当输入10,11,12时,下面程序运行结果是【 】。 #include<iostream> using namespace std; int main() { int a,b,C,max; cin>>a>>b

admin2009-05-20  34

问题 当输入10,11,12时,下面程序运行结果是【  】。
   #include<iostream>
    using namespace std;
   int main()
   {
     int a,b,C,max;
     cin>>a>>b>>C;
     if(max<b)
        max=b;
        if(max<c)
                max=c;   
                cout<<max<<endl;
                return 0;
    }

选项

答案12

解析 此题考查if语句的基本使用。程序的功能是输入3个整数,利用if语句,找出其中最大的一个整数并输出。
转载请注明原文地址:https://kaotiyun.com/show/Zv5p777K
0

最新回复(0)