解题思路:
注意事项:
参考代码:
#include<stdio.h> int count=0; int cishu=0; int n; int nextCourse(int course) { if(course==1) { // printf("政"); ++count; if(count==n) { --count; ++cishu; cishu=cishu%7654321; return 0; } else nextCourse(2); --count; return 0; } if(course==4) { // printf("综"); ++count; if(count==n) { --count; ++cishu; cishu=cishu%7654321; return 0; } else nextCourse(3); --count; return 0; } if(course==2) { // printf("历"); ++count; if(count==n) { --count; ++cishu; cishu=cishu%7654321; return 0; } else { nextCourse(1);nextCourse(3); } --count; return 0; } if(course==3) { // printf("地"); ++count; if(count==n) { --count; ++cishu; cishu=cishu%7654321; return 0; } else { nextCourse(2);nextCourse(4); } --count; return 0; } } int main() { scanf("%d",&n); // 1:政治,2:历史,3:地理,4:综合 nextCourse(1); printf("%d",cishu%7654321); return 0; }
0.0分
2 人评分
母牛的故事 (C语言代码)浏览:739 |
K-进制数 (C语言描述,蓝桥杯)浏览:955 |
1124题解浏览:630 |
循环入门练习5 (C语言代码)浏览:907 |
图形输出 (C语言代码)浏览:1019 |
printf基础练习 (C语言代码)浏览:2268 |
老王赛马 (C++代码)浏览:973 |
回文数(一) (C语言代码)浏览:1170 |
小九九 (C++代码)简单粗暴,直接输出浏览:683 |
1227题解浏览:582 |