C二级辅导-进制转换 (C语言代码) 摘要:题目分析 送命题..如果你看见这题 绝对是送命题 %a(%A) 浮点数、十六进制数字和p-(P-)记数法(C99)%c 字符%d 有符号十进制整数%f 浮点数(包括float和doulb…… 题解列表 2017年06月17日 9 点赞 0 评论 1382 浏览 评分:0.0
2003年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:此题尤其简单 倘若你看了此题解 说明你已经对C语言有了无味性 回去思考思考你究竟还学不学C了代码#include<stdio.h> main() { int a[10],i,c=0; …… 题解列表 2017年06月17日 0 点赞 4 评论 1517 浏览 评分:8.7
C语言程序设计教程(第三版)课后习题6.9 (C语言代码) 摘要:#include <stdio.h>int main(){ float m,n; float b = 1000; scanf("%f%f",&m,&n); for(int i = 0; i <…… 题解列表 2017年06月16日 1 点赞 0 评论 770 浏览 评分:0.0
简单的a+b (C语言代码) 摘要:#include<stdio.h>int main(void){ int a,b; bool i=true; while(i){ scanf("%d%d",&a,&b)…… 题解列表 2017年06月16日 1 点赞 0 评论 848 浏览 评分:3.0
简单的a+b (C语言代码) 摘要:#include<studio.h>main(){ int a=0 ,b=0; scanf('%d %d',&a,&b); …… 题解列表 2017年06月16日 0 点赞 0 评论 780 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题9.10 (C语言代码) 摘要:#include<stdio.h>#include<string.h>int main() { char a[100]; int i,size; gets(a); size=strlen(a); …… 题解列表 2017年06月16日 1 点赞 0 评论 856 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(3) (C语言代码) 摘要:#include <stdio.h>#include <stdlib.h>#include <math.h>int main(int argc, char *argv[]) { int n, max…… 题解列表 2017年06月16日 1 点赞 0 评论 1861 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:#include <stdio.h>#include <stdlib.h>void cotf(int C){ int C2 = 150,F; for(C; C <= C2; C = (C + 5))…… 题解列表 2017年06月16日 0 点赞 0 评论 934 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:#include <stdio.h>#include <stdlib.h>#include <math.h> int main(int argc, char *argv[]) { int x; dou…… 题解列表 2017年06月16日 0 点赞 0 评论 1141 浏览 评分:0.0
2004年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:#include <stdio.h>#include <stdlib.h>double fact(int n){ int i; long f=1; for(i=2;i<=n;i++) { f=f*i…… 题解列表 2017年06月16日 0 点赞 0 评论 809 浏览 评分:0.0