6 条题解
-
1Infinity_ LV 8 @ 2024-08-18 17:36:11
啊,很久没见到这么简单的题了
#include<iostream> using namespace std; int main(){ unsigned long long a, b; cin >> a >> b; cout << a*b; return 0; }
-
12022-07-11 13:35:25@
#include<iostream>
using namespace std;
int main()
{
long a,b;
cin>>a>>b;
cout<<a*b<<endl;
return 0;
}//我是对的!!!
-
02022-07-01 14:27:02@
#include<iostream>
using namespace std;
int main()
{
long a,b;
cin>>a>>b;
cout<<a*b<<endl;
return 0;
} -
02021-10-23 16:40:34@
#include<iostream>
#include<cmath>
using namespace std;
const double PI=3.14159;
int main(){
long long h,r;
cin >> h >> r;
cout<<h*r;
return 0;
} -
-12021-11-21 21:27:04@
#include <iostream>
using namespace std;
int main()
{
long long A,B;
cin>>A>>B;
cout<<A*B;
return 0;
} -
-12021-10-26 21:31:17@
@戴铖翔 遇事不决用long long
#include<iostream>
using namespace std;
int main()
{
long long A,B;
cin>>A>>B;
cout<<A*B;
return 0;
}
- 1
信息
- ID
- 2328
- 难度
- 7
- 分类
- (无)
- 标签
- 递交数
- 921
- 已通过
- 210
- 通过率
- 23%
- 被复制
- 4
- 上传者