标签:code 勇敢者 今天 定义 选择 包含 代码 考试成绩 print
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1846
题目:
1 #include <cstdio> 2 3 int t, n, m; 4 5 int main() { 6 scanf("%d", &t); 7 while(t--) { 8 scanf("%d%d", &n, &m); 9 if(n % (m + 1) == 0) { 10 printf("second\n"); 11 } else { 12 printf("first\n"); 13 } 14 } 15 return 0; 16 }
标签:code 勇敢者 今天 定义 选择 包含 代码 考试成绩 print
原文地址:https://www.cnblogs.com/Dillonh/p/8996389.html