不明白错在那里··我是菜鸟
#include <iostream>using namespace std;
void main()
{
float x;
float y;
float z;
z=x*y;
cin>>x;
cin>>y;
cout<<"z"<<z<<endl;
}
这个为什么不可以求两个任意的数的乘积?
#include <iostream> using namespace std; void main() { float x; float y; float z; cin>>x; cin>>y; z=x*y; cout<<"z"<<z<<endl; }