题解 | #你是天才吗?#
你是天才吗?
https://www.nowcoder.com/practice/557cc54704bb4d56b73b62d1a5455331
#include <stdio.h> int main() { int IQ; scanf("%d", &IQ); if(IQ >= 140) { printf("Genius"); } else { { printf("fool"); } } return 0; }
你是天才吗?
https://www.nowcoder.com/practice/557cc54704bb4d56b73b62d1a5455331
#include <stdio.h> int main() { int IQ; scanf("%d", &IQ); if(IQ >= 140) { printf("Genius"); } else { { printf("fool"); } } return 0; }
相关推荐