怎么用c语言编写一个程序,可以根据输入不同的数字输出不同的内容
这简单啊int n;scanf("%d",&n);switch(n){case 1:printf("你好!");break;case 2:printf("你坏!");break;}