割胃大佬这样为什么不能通过编译
#include <stdio.h>#include <windows.h>
void jo(){
int x;
printf("你选择了奇偶数判断,请输入一个整数:");
scanf("%d", &x);
if(x%2==0)
{
printf("%d是偶数\n", x);
}
else
{
printf("%d是奇数\n", x);
}
}
void rp(){
int x;
printf("你选择了闰年判断,请输入年份:");
scanf("%d", &x);
if(x%400==0)
{
printf("%d年是闰年\n", x);
}
else
{
printf("%d年是平年\n", x);
}
}
int main()
{
int x;
printf("请选择模块:\n");
printf("\t\t1,猜奇偶数\n\t\t2,猜闰平年\n");
printf("\n我的选择是:");
scanf("%d", &x);
system("cls");
x==1 ? jo() : x==2 ? rp() : printf("这是啥\n");
return 0;
} 错误信息呢 wp231957 发表于 2021-4-15 18:05
错误信息呢
我已经知道了,但是论坛似乎没有删除帖子的功能https://cdn.jsdelivr.net/gh/hishis/forum-master/public/images/patch.gif
页:
[1]