题解 | 你是天才吗?
你是天才吗?
https://www.nowcoder.com/practice/557cc54704bb4d56b73b62d1a5455331
#include <stdio.h>
int main() {
int a, b;
while (scanf("%d", &a) != EOF) { // 注意 while 处理多个 case
// 64 位输出请用 printf("%lld") to
if(a>=140)
printf("Genius");
else break;
}
return 0;
}