字符串的输入输出处理 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[1000]; int N; scanf("%…… 题解列表 2019年05月13日 0 点赞 0 评论 741 浏览 评分: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 评论 581 浏览 评分:0.0
蓝桥杯2014年第五届真题-生物芯片 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h> using namespace std; typedef long long ll; int main() { …… 题解列表 2019年05月13日 1 点赞 0 评论 689 浏览 评分:6.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 评论 729 浏览 评分:0.0
[编程入门]结构体之成绩记录 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct student{ char num[100]; char name[100]; int grade1; int grade…… 题解列表 2019年05月13日 0 点赞 0 评论 822 浏览 评分:0.0
矩阵最大值 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int s[100][100],m,n,i,j,sum=0,max=0,t,ii,jj; while (scan…… 题解列表 2019年05月13日 0 点赞 0 评论 1242 浏览 评分:5.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 评论 505 浏览 评分: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 评论 1009 浏览 评分: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 评论 860 浏览 评分: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 评论 589 浏览 评分:0.0