标签:void abc class 形式 can 习题 判断 循环 ase
#include<stdio.h> int main(void) { int a; scanf("%d",&a); switch(a) { case 1: printf("a"); case 2: printf("b"); case 3: printf("c\n"); } return 0; }
dowhile
一般形式为
语句
while(表达式);
先执行语句再进行判断,如果表达式为真,则继续循环
习题和dowhile 使用switch语句,要求输入1,输出abc;输入2输出bc,输入3输出C。
标签:void abc class 形式 can 习题 判断 循环 ase
原文地址:https://www.cnblogs.com/baizhige/p/12634519.html