通过海量题库、编程比赛和实时排名,系统化提升您的编程能力。
#include<iostream> using namespace std; int main() { int a,b,c; a = 1; b = 2; c = 3; if (a>b) { if (a>c) cout << a <<' '; else cout << b << ' '; } cout << c << endl; return 0; }
输出:( )