3 条题解
- 1
信息
- ID
- 297
- 时间
- 1000ms
- 内存
- 16MiB
- 难度
- 3
- 标签
- 递交数
- 312
- 已通过
- 174
- 上传者
太简单了上代码:
#include <iostream>
using namespace std;
int main()
{
int n;
cin >> n;
if(n>=90)
{
cout << n*3 << endl;
}
else if(n>=80)
{
cout << n*2 << endl;
}
else if(n>=70)
{
cout << n << endl;
}
else
{
cout << 50 << endl;
}
return 0;
}
我的号!
#include<bits/stdc++.h>
using namespace std;
int main()
{
int c;
cin >> c;
if(c >= 90)
{
c = c * 3;
cout << c;
}
else if(c >= 80)
{
c = c * 2;
cout << c;
}
else if(c >= 70 && c <= 79)
{
cout << c;
}
else
{
cout <<"50";
}
return 0;
}//已AC