问题标题: 1817我哪儿错了

0
0
已解决
朱苏婉
朱苏婉
中级守护
中级守护
#include<iostream>
using namespace std;
int main()
{
    int a,b,c;
    cin>>a>>b>>c;
    if(a<=80)
      cout<<"1"<<endl;
    if(b<=80)
      cout<<"1"<<endl;
    if(c<=80)
      cout<<"1"<<endl;
    else
      cout<<"0"<<endl;
    return 0;
}

http://judge.codingtang.com/problem/1817/              请将思路发来,谢谢!


0
已采纳
孙艺芳
孙艺芳
高级守护
高级守护

    if(a<=80)
        cout<<"1"<<endl;
    else
        cout<<"0"<<endl;
    if(s<=80)
        cout<<"1"<<endl;
    else
        cout<<"0"<<endl;
    if(d<=80)
        cout<<"1"<<endl;
    else
        cout<<"0"<<endl;

 

0
张瑀涵
张瑀涵
高级光能
高级光能

你应该在每一个if后面进行判断。

0
夏卓然
夏卓然
初级守护
初级守护

中间两个应该是else if

0
徐润扬
徐润扬
高级守护
高级守护




    int a,b,c;
    cin>>a>>b>>c;
    bool x=(a<=80);
    bool e=(b<=80);
    bool v=(c<=80);
    cout<<x<<endl<<e<<endl<<v; 

 

0
我要回答