这名用户暂未设置签名。
追踪最近的用户名外显变动记录。
最近的文章、讨论、云剪贴板与社区记录
``` #include using namespace std; int main(){ int a, b, c; cin >> a >> b >> c; if( a < b) { if( b < c){ cout << a << " " << b << " " << c; } else if( b < c) { c…
``` #include using namespace std; int main(){ int x; cin >> x; if(x <= 1){ cout << "Today, I ate " << x << " apple." ; } else{ cout << "Today, I ate " << x << "…
``` #include using namespace std; int main(){ double t; int n; cin >> t >> n; cout << fixed << setprecision(3) << t / n << endl; cout << 2*n; return 0; } ```
``` #include using namespace std; int main(){ int a,b,c; cin >> a >> b >> c; cout << (a + b)* c; return 0; } ```
``` #include using namespace std; int main(){ double a, b; cin >> a >> b; cout << a + b; return 0; } ```