本文最后更新于 1163 天前,其中的信息可能已经有所发展或是发生改变。
代码语言:javascript复制#include<iostream>
using namespace std;
int main(){
double sum=0;
while(1){
double x,y;
cin>>x>>y;
if(x==0&&y==0){
break;
}
sum =x*y;
cout<<sum<<" "<<x<<" "<<y<<endl;
}
cout<<sum;
return 0;
}
Post Views: 167