WU-C语言程序设计教程(第三版)课后习题11.5 (C语言代码)(结构体实现) 摘要:解题思路:这题用的是结构体来做的 想学的可以看看参考代码:#include<stdio.h> struct student { char number[20]; char name[10…… 题解列表 2017年12月12日 2 点赞 0 评论 903 浏览 评分:0.0
WU-C语言程序设计教程(第三版)课后习题11.12 (C++代码)(想学链表的小伙伴可以看看) 摘要:解题思路:正宗链表实现 可以看看参考代码:#include<iostream> #include<algorithm> using namespace std; struct LinkList …… 题解列表 2017年12月12日 3 点赞 0 评论 1128 浏览 评分:5.6
2003年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include"stdio.h" int main() { int a[10],i,sum=0,average,count=0; for(i=0;i<10;…… 题解列表 2017年12月12日 0 点赞 0 评论 791 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.9 (C语言代码) 摘要:参考代码:#include <stdio.h>int main(){ int N; float M, h, sum = 0; scanf("%f %d", &M, &N); while (N) { …… 题解列表 2017年12月12日 0 点赞 0 评论 625 浏览 评分:0.0
三角形 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int t,n,i,j,a[100][100]; scanf("%d",&t); while(t--) { s…… 题解列表 2017年12月12日 0 点赞 0 评论 746 浏览 评分:9.9
WU-C语言程序设计教程(第三版)课后习题11.8 (C语言代码)(结构体实现) 摘要:参考代码:#include<stdio.h> #include<malloc.h> typedef struct student { int number; int data; st…… 题解列表 2017年12月12日 7 点赞 0 评论 1472 浏览 评分:0.0
WU-2003年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:参考代码:#include<stdio.h> int main() { int a[10],i,N=0; float ave,sum=0; for(i=0;i<10;i++) { …… 题解列表 2017年12月12日 2 点赞 0 评论 1352 浏览 评分:5.0
WU-2003年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:参考代码:#include<stdio.h> int isprime(int M,int N) { int i,j,sum=0,flag; for(i=M;i<=N;i++) { …… 题解列表 2017年12月12日 3 点赞 8 评论 1657 浏览 评分:9.6
我美吗! 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <math.h> int main() { int i,t,a[10],min; for(i=0;i…… 题解列表 2017年12月12日 1 点赞 0 评论 787 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题9.10 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>int main(){ char str[100]; gets(str); int n= str…… 题解列表 2017年12月12日 0 点赞 0 评论 1022 浏览 评分:0.0