弟弟的作业 (C语言代码) 摘要:解题思路:把这100道题放在for循环下面,然后判断答案是否正确,正确就计数,最后把总数输出即可。注意事项:参考代码:#include <stdio.h>void main(){ int a,b…… 题解列表 2017年12月03日 1 点赞 2 评论 470 浏览 评分:0.0
2004年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>int main(){ int i,nums[15],j,temp,k; for(i=0…… 题解列表 2017年12月03日 0 点赞 0 评论 683 浏览 评分:0.0
地宫取宝 (C++代码)(记忆化搜索) 摘要:#include<iostream> #include<cstring> #include<cstdio> #include<algorithm> using namespace std; …… 题解列表 2017年12月03日 6 点赞 1 评论 1262 浏览 评分:2.7
2004年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ double fact(int), mypow(double,int); flo…… 题解列表 2017年12月03日 0 点赞 0 评论 730 浏览 评分:0.0
危险系数 (C++代码) 摘要:#include<iostream> #include<cstring> #include<cstdio> #include<algorithm> using namespace std; …… 题解列表 2017年12月03日 13 点赞 0 评论 1561 浏览 评分:6.9
C语言训练-百钱百鸡问题 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,j,z,temp; int X,Y,Z; int a=0,b=0,c=0,A[10],B[10…… 题解列表 2017年12月03日 0 点赞 0 评论 877 浏览 评分:0.0
剪格子 (C++代码) 摘要:#include<iostream> #include<cstdio> #include<cstring> #include<algorithm> using namespace std; …… 题解列表 2017年12月03日 5 点赞 4 评论 1002 浏览 评分:0.0
【出圈】 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,m,i,count,x,c; static int s[100]; while(scanf("%d%…… 题解列表 2017年12月03日 1 点赞 0 评论 782 浏览 评分:0.0
母牛生小牛 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,a1,a2,a3,a4,year,i,t; scanf("%d",&n); a1=1; a2=0; …… 题解列表 2017年12月03日 1 点赞 0 评论 2025 浏览 评分:2.0
Manchester- C语言考试练习题_保留字母 摘要:解题思路:当做输出字符串中的字母来解决;注意事项:判断是否是字母时,大写与小写之间不能用&&连接。参考代码:#include<stdio.h> #include<string.h> int m…… 题解列表 2017年12月02日 19 点赞 2 评论 1286 浏览 评分:9.0