can anyone help me im trying to multiply 3 x 5 but i get a star (*) this kind of shape for answer anyone know what is going on? first time c++
#include
#include <iostream> #include <string> #include<iomanip> using namespace std; int main() { float product ;//your type must b type float float a= 3.0, b= 5.0, c = 7.1, d=8.3, e=2.2, f=3.2 , g= 6.1; int h=5 ;//wat is the use of c,d,e,f,g,h cout << " " << a <<endl; cout<< "* "<<b<<endl; cout << "-------------" << endl; product = 3.0*5.0 ; cout << product << endl; system ("pause") ; }
omg thank you !!! you saved my life!!!!!
i kept writing it on the string but what i should of done is write it on float i see!!
because ur type was string and u r multiplying the float it means u must change the type of the product or use cast function
yea thanks!!!!
Join our real-time social learning platform and learn together with your friends!