2
0
已采纳
臧启亚
初级光能
初级光能
核心代码:
if (s<100 and s>9) cout<<"1"<<endl;
else cout<<"0"<<endl;
不需要那么多,直接if判断就可以了
0
0
周天睿
初级光能
初级光能
include
using namespace std; int main() { int a; cin>>a; if(a>=10&&a<=99) cout<<"1"; else cout<<"0"; return 0; }
0
0
-1
-2
-2
-3
刘睿轩
中级光能
中级光能
if(a<10||a>99) cout << 0; else cout << 1;//输入a,然后判断
刘睿轩在2018-01-20 19:45:47追加了内容
管理员,有个叫阮俊雄的恶意举报我!
-4