69 条题解
信息
- ID
- 30
- 时间
- 1000ms
- 内存
- 16MiB
- 难度
- 5
- 标签
- 递交数
- 15568
- 已通过
- 6525
- 上传者
#include <iostream>
using namespace std;
int main()
{
int a,b,c;
cin >> a >> b >> c;
if (a+b>c)
{
cout << "yes";
}
else
{
cout << "no";
}
return 0;
}
#include <bits/stdc++.h>
using namespace std;
int main()
{
int a,b,c;
cin >> a >> b >> c;
if (a+b>c)
{
cout << "yes";
}
else
{
cout << "no";
}
return 0;
}
第1行很重要,不要改,不然你会后悔的
#include <iostream>
using namespace std;
int main()
{
int a,b,c;
cin >> a>>b>>c;
if(a+b>c)
{
cout<<"yes";
}
else
{
cout << "no";
}
return 0;
}
{
int a,b,c;
cin>>a>>b>>c;
if (a+b>c)//条件;
{
cout<<"yes";//得出结论;
}
//这里也作判定,用else会更简略;
return 0;
}
#include <iostream>
using namespace std;
int main()
{
int a,b,c;
cin >> a >> b >> c;
if (a+b>c)
{
cout << "yes";
}
else
{
cout << "no";
}
return 0;
}
#include <iostream>
using namespace std;
int main()
{
int a,b,c;
cin >> a >> b >> c;
if (a+b>c)
{
cout << "yes";
}
else
{
cout << "no";
}
return 0;
}
#include <iostream> using namespace std; int main() { int a,b,c;//输入 cin >> a >> b >> c;//赋值 if (a+b>c)//判断 { cout << "yes"; } else//那么 { cout << "no"; } return 0;//结束 }
#include<iostream> using namespace std; int main() { int a,b,c; cin>>a>>b>>c; if(a+b>c) { cout<<"yes"; } else { cout<<"no"; } return 0;
先赞后看 养成习惯!👍
若有代码,请使用MARKDOWN。
——kkksc03
废话不多说,上代码。
if (a + b > c)
{
cout << "yes";
}
else
{
cout << "no";
}
这一道题比上一道题要简单,用if-else语句即可
```
#include <bits/stdc++.h>
using namespace std;
int main()
{
int a,b,c;
cin >> a >> b >> c;
if (a + b > c) cout << "yes";
else cout << "no";
return 0;
}
```
这题是要写if语句的C++代码程序,理解思路是先输入变量a、b、c,再输出a + b的和是否大于c,大于输出“yes”,小于输出“no”上代码!烦请各位支持一下小编~~~
#include <iostream>
using namespace std;
int a , b , c ;
int main(){
cin >> a >> b >> c ;
cout << (a+b>c?"yes":"no");
return 0 ;
}
#include <iostream> using namespace std; int main() { int a,b,c; cin >> a,b,b; if (a+b > c) { cout << "yes"; } else { cout << "no"; } return 0; }
#include<iostream> using namespace std; int main() { int n,sum=1; cin>>n; for(int i=1;i<=n;i++) { sum=sum*i; } cout<<sum; }
#include<iostream> using namespace std; int main() { int a,b,c; cin>>a>>b>>c; if(a+b>c) { cout<<"yes"; } else { cout<<"no"; } return 0; }
#include <iostream>
using namespace std;
int main()
{
int a,b,c;
cin >> a >> b >> c;
int m = a+b;
if (m > c)
{
cout << "yes" << endl;
}
else
{
cout << "no" << endl;
}
return 0;
}