#include<iostream>
using namespace std;
int main(){
float x,y;
while(1){
cin>>x>>y;
cout<<x*y<<endl;
}
return 0;
}
#include
using namespace std;
int main(){
float x,y;
while(1){
cin>>x>>y;
cout<<x*y<<endl;
}
return 0;
}
浮點數運算很慢(比乘法慢5倍)
#include
using namespace std;
int main(){
float x,y;
while(1){
cin>>x>>y;
cout<<x*y<<endl;
}
return 0;
}
浮點數運算很慢(比乘法慢5倍)
還有這是無窮迴圈