竞赛
考级
#include <iostream> using namespace std; int main(){ int a,b,c; cin>>a>>b>>c; if(a>0) { cout<<a<<endl; } if(b>0) { cout<<b<<endl; } if(c>0) { cout<<c<<endl; } return 0; }
chaizechen
法兰西玫瑰
一枚button
思路分析 这道题主要考验的是我们对于判断的掌握,只要掌握了判断,这道题基本上没问题 答案 提问时间,随便提问吧
༺ཌༀ傲世万物ༀད༻
很难 简单
阿瓦达啃大瓜
#include <bits/stdc++.h> using namespace std; int main(){ long long a,b,c;cin>>a>>b>>c; if(a>0)cout<<a<<endl; if(b>0)cout<<b<<endl; if(c>0)cout<<c; return 0; }
AC神
#include <iostream> using namespace std; int main() { int a, b, c; cin >> a >> b >> c; if (a > 0) { cout << a << endl; } if (b > 0) { cout << b << endl; } if (c > 0) { cout << c; } return 0; }
源于惯性yoki
#include <iostream> using namespace std; int main(){ int a,b,c; cin>>a>>b>>c; if(a>0){ cout<<a<<endl; } if(b>0){ cout<<b<<endl; } if(c>0){ cout<<c<<endl; } return 0; }
135****5269
6.
_1943
#include<iostream> using namespace std; int main(){ int a,b,c; cin>>a>>b>>c; if(a>0)cout<<a<<endl; if(b>0)cout<<b<<endl; if(c>0)cout<<c<<endl; }
175****9056
#include <iostream> using namespace std; int main() { int a,b,c; cin>>a>>b>>c; if(a>0)cout<<a<<endl; if(b>0)cout<<b<<endl; if(c>0)cout<<c<<endl; return 0; }
OX114514
四大Tian王
逍遥骇好=&