[编程入门]矩阵对角线求和 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,j,s[3][3],sum1=0,sum2=0; for(i=0;i<3;i++) { for(j…… 题解列表 2019年05月13日 0 点赞 0 评论 543 浏览 评分:0.0
[编程入门]数组插入处理 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int s[10],i,t; for(i=0;i<9;i++) scanf("%d",&s[i]); scanf…… 题解列表 2019年05月13日 0 点赞 0 评论 637 浏览 评分:0.0
2003年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int s[10],i,t=0,n=0; double t1; for(i=0;i<10;i++) { sca…… 题解列表 2019年05月13日 0 点赞 0 评论 491 浏览 评分:0.0
C二级辅导-等差数列 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,sum=0,s=2; scanf("%d",&n); for(int i=0;i<n;i++) { …… 题解列表 2019年05月13日 0 点赞 0 评论 698 浏览 评分:0.0
C二级辅导-公约公倍 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int m,n,max,min,max1,a=0; scanf("%d %d",&m,&n); for(int …… 题解列表 2019年05月13日 0 点赞 0 评论 766 浏览 评分:0.0
字符逆序 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int s[10],min=0,t,i; for(i=0;i<10;i++) s…… 题解列表 2019年05月13日 0 点赞 0 评论 402 浏览 评分:0.0
[编程入门]结构体之成绩记录 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct student{ char num[100]; char name[100]; int grade1; int grade…… 题解列表 2019年05月13日 0 点赞 0 评论 692 浏览 评分:0.0
教学楼的楼梯 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>long fun(int M){ if(M==1||M==2) return 1; else return fun(M-1)+fun(M…… 题解列表 2019年05月13日 0 点赞 0 评论 644 浏览 评分:0.0
[编程入门]自定义函数之数字后移 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int s[100],n,i,m,m1; scanf("%d",&n); for(i=0;i<n;i++) { …… 题解列表 2019年05月13日 0 点赞 0 评论 447 浏览 评分:0.0
字符串的输入输出处理 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[1000]; int N; scanf("%…… 题解列表 2019年05月13日 0 点赞 0 评论 565 浏览 评分:0.0