C语言训练-阿姆斯特朗数 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int go(int n);int main(){ int i; for(i=2;i<1000;i++) { …… 题解列表 2017年08月12日 0 点赞 0 评论 947 浏览 评分:0.0
2004年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include "stdio.h"double fun(double n);double mypow(double x,double n);int main(){ do…… 题解列表 2017年08月12日 0 点赞 0 评论 830 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题7.4 (C语言代码) 摘要:解题思路:注意事项:参考代码#include<stdio.h>int main(){ int a[9]; int temp,m,i; for(i=0; i<9; i++) { …… 题解列表 2017年08月12日 0 点赞 0 评论 685 浏览 评分:0.0
C二级辅导-进制转换 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; scanf("%d",&n); printf("%o",n);}…… 题解列表 2017年08月12日 0 点赞 0 评论 624 浏览 评分:0.0
C二级辅导-分段函数 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ float x; scanf("%f",&x); if(x<1) printf("%.2f",…… 题解列表 2017年08月12日 0 点赞 0 评论 676 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.5 (Java代码) 摘要:解题思路:注意事项:用java写这题的难题就是小数点,用DecimalFormat方法解决,如代码。参考代码:import java.text.DecimalFormat;import java.ut…… 题解列表 2017年08月12日 1 点赞 0 评论 1348 浏览 评分:0.0
C二级辅导-求偶数和 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,i,sum; int a[100]; sum=0; scanf("%d",&…… 题解列表 2017年08月12日 1 点赞 0 评论 743 浏览 评分:0.0
C二级辅导-同因查找 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i; for(i=10;i<1000;i++) { if(i%2==0&…… 题解列表 2017年08月12日 0 点赞 0 评论 648 浏览 评分:0.0
C二级辅导-计负均正 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,c,b; float x,sum; c=b=sum=0; int a[20]…… 题解列表 2017年08月12日 0 点赞 0 评论 692 浏览 评分:0.0
C二级辅导-统计字符 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[1000]; int n,i,x1,x2,x3,x…… 题解列表 2017年08月12日 0 点赞 0 评论 661 浏览 评分:0.0