题目内容

请写出与以下else-if语句等价的switch语句。if(choice == 1) price = 3.0;else if(choice == 2) price = 2.5;else if(choice == 3) price = 4.0;else if(choice == 4) price = 3.5;else{ price = 0.0; }switch( ){case 1: price=3.0;break;case 2:price=2.5; break;case 3:price=4.0;break;case 4: price=3.5;break;( ) price=0.0; break;}

查看答案
更多问题

请编写程序,输入三个整数,求出其中的最大值并输出,请填空完成相应功能。如输入2 3 0输出3#include()int main(){int a,b,c,max;scanf(); //输入3个整数if() max=a;else max=b;if() max=c;printf("%d\n",);return 0;}

【测试3】#includemain(){char ch;ch=getchar();switch(ch){case‘A’:printf(“%c”,’A’);case‘B’:printf(“%c”,’B’);break;default:printf(“%s\n”,”other”);}}当从键盘输入字母A时,输出结果为:

语句填空:下列 for循环语句将输出: 0 1 2 0 1 2 0 1 2for( i=1; i<=9; i++ ) printf("%2d",——— );

当a=1,b=2,c=3时,执行以下程序段后,a的值为( )if(a>c) b=a;a=c;c=b;

答案查题题库