陶陶摘苹果2 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main(){ int m,n,a[200],count=0; scanf("%d %d",&n,&m); fo…… 题解列表 2017年10月22日 0 点赞 0 评论 879 浏览 评分:0.0
判定字符位置 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<string.h> int main(){ char str[100]; scanf("%s",str)…… 题解列表 2017年10月22日 0 点赞 0 评论 1217 浏览 评分:0.0
链表数据求和操作 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main(){ int a[10],b[10],i,sum1=0,sum2=0; for(i=0;i<10;i++)…… 题解列表 2017年10月22日 0 点赞 0 评论 1231 浏览 评分:0.0
整数平均值 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int average(int n,int a[]){ int sum=0; for(int i=0;i<n;i++){ …… 题解列表 2017年10月22日 0 点赞 0 评论 1053 浏览 评分:0.0
整除问题 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main(){ int i,m,n,a; scanf("%d %d %d",&n,&m,&a); for(i=n…… 题解列表 2017年10月22日 0 点赞 0 评论 768 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题12.1 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main(){ int i,m,n,a; scanf("%d %d %d",&n,&m,&a); for(i=n…… 题解列表 2017年10月22日 0 点赞 0 评论 893 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题12.2 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<math.h> int main(){ int n,a,b[32]={0},c[32]={0},i,sum=…… 题解列表 2017年10月22日 1 点赞 0 评论 1242 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题12.3 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<math.h> int getbits(int a,int n1,int n2){ int b[32]={0…… 题解列表 2017年10月22日 1 点赞 0 评论 765 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题12.5 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<math.h> int b[32]={0},c[32]={0},i,sum=0; int move(int a…… 题解列表 2017年10月22日 0 点赞 0 评论 942 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题12.6 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> void f(char a[]){ int i; if(a[0]=='1'){ for(i=1;i<1…… 题解列表 2017年10月22日 1 点赞 0 评论 978 浏览 评分:0.0