调试不了下一步,格式和系统不知道哪个有问题,求各位朋友帮忙解答谢谢

关注您好目前测试您的代码正常,这边你是不是用debug模式跑了?这边建议你不要用debug模式跑。

#include <stdio.h>
int main() {
int type;
scanf("%d", &type);
if (type == 1) {
printf("你好");
} else if (type == 2) {
printf("早上好");
} else if (type == 3) {
printf("晚上好");
} else if (type == 4) {
printf("再见");
} else {
printf("啊,什么啊?");
}
return 0;
}