C二级辅导-统计字符 (C语言代码) 摘要:/*输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数*/ #include<stdio.h> #include<ctype.h> int main(void) { c…… 题解列表 2017年07月24日 2 点赞 0 评论 1889 浏览 评分:0.0
C二级辅导-阶乘数列 (C语言代码) 摘要:#include<stdio.h> typedef double ll; int main(void) { ll sum=0,t=1; int i; for(i=1…… 题解列表 2017年07月24日 0 点赞 0 评论 1190 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题7.5 (C语言代码) 摘要:#include <stdio.h> int main() { int a[10],b[10],i; for(i=0;i<10;i++) { scanf("%d",&a[i]);…… 题解列表 2017年07月24日 0 点赞 0 评论 1479 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:#include<iostream> #include<cstdio> #include<cmath> using namespace std; int main(void) { …… 题解列表 2017年07月24日 0 点赞 0 评论 1317 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:#include<iostream> using namespace std; int ctof(int c) { return 32+c*9/5; } int main(voi…… 题解列表 2017年07月24日 0 点赞 0 评论 1718 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.8 (C语言代码) 摘要:#include<stdio.h> #include<stdlib.h> struct link { int id; int score; struct link …… 题解列表 2017年07月25日 1 点赞 0 评论 1425 浏览 评分:0.0
统计字符 (C语言描述运用ctype.h) 摘要:解题思路:#include <ctype.h>1 字符测试函数 1> 函数原型均为int isxxxx(int) 2> 参数为int, 任何实参均被提升成整型 3> 只能正确处理处于ascii[…… 题解列表 2017年07月25日 0 点赞 0 评论 1663 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题1.5 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ printf("**************"); printf("hello word…… 题解列表 2017年07月25日 0 点赞 0 评论 882 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题9.8 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>#define da(a,b,c) d=a>b?(a>c?a:c):(b>c?b:c);float zu…… 题解列表 2017年07月25日 0 点赞 0 评论 926 浏览 评分:0.0
A+B for Input-Output Practice (III) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a,b; while(scanf("%d%d",&a,&b)!=EOF) { if(a==0&&b=…… 题解列表 2017年07月25日 0 点赞 0 评论 1134 浏览 评分:0.0