统计字符 (C语言描述运用ctype.h) 摘要:解题思路:#include <ctype.h>1 字符测试函数 1> 函数原型均为int isxxxx(int) 2> 参数为int, 任何实参均被提升成整型 3> 只能正确处理处于ascii[…… 题解列表 2017年07月25日 0 点赞 0 评论 1246 浏览 评分: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 评论 1164 浏览 评分:0.0
字符串的输入输出处理 (C语言代码) 摘要:#include<stdio.h> int main(void) { int n,i; char s[100][100]; scanf("%d",&n); getc…… 题解列表 2017年07月25日 1 点赞 11 评论 2161 浏览 评分:9.5
弟弟的作业 (C++代码) 摘要:#include<cstdio> #include<iostream> #include<cstring> using namespace std; int stoint(char s[]) …… 题解列表 2017年07月24日 0 点赞 0 评论 1090 浏览 评分:5.3
2006年春浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:#include<iostream> #include<cstdio> using namespace std; int main(void) { int a=0,b=0,c=0,t…… 题解列表 2017年07月24日 1 点赞 0 评论 1492 浏览 评分:7.3
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 评论 878 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:#include<iostream> #include<cstdio> #include<cmath> using namespace std; int main(void) { …… 题解列表 2017年07月24日 0 点赞 0 评论 843 浏览 评分: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 评论 686 浏览 评分:0.0
2004年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:#include<stdio.h> double fact(int a) { if(a<0) return -1; else if(a==1|| a==0) return …… 题解列表 2017年07月24日 0 点赞 0 评论 707 浏览 评分:9.9
2004年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:#include<stdio.h> #include<math.h> int main(void) { int i,t,m,a[10]; for(i=0;i<10;i++) …… 题解列表 2017年07月24日 0 点赞 9 评论 838 浏览 评分:7.3