3 条题解
-
4cxccxc LV 9 @ 2018-11-07 14:42:05
人生苦短
print(int((int(input())*10+int(input()))/19))
-
02021-01-27 21:46:35@
c++总是最长的,害
#include<bits/stdc++.h> using namespace std; int main() { int a,b; cin>>a; cin>>b; cout<<(10*a+b)/19<<endl; return 0; }
-
02017-10-23 12:33:23@
正确答案poi~
#include <iostream>
#include <iomanip>
#include <cmath>
using namespace std;
int main()
{
int a,b,c,d,e,g;
cin>>a>>b;
c=a*10;
d=c+b;
e=19;
g=d/e;
printf("%d",g);
getchar();
getchar();
return 0;
}
- 1
信息
- 难度
- 3
- 分类
- (无)
- 标签
- (无)
- 递交数
- 667
- 已通过
- 280
- 通过率
- 42%
- 上传者