• Source
    1. #include<iostream>
    2. using namespace std;
    3. main()
    4. {
    5. float num1,num2,mul;
    6. cout<< " \n Enter a Number : " ;
    7. cin>>num1;
    8. cout<< "\n Enter another Number : " ;
    9. cin>>num2;
    10. mul=num1*num2;
    11. cout<< "\n The multiplication of the Numbers is : " <<mul <<endl ;
    12. system("pause") ;
    13. }