WU-2004年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:参考代码:#include<stdio.h> #include<math.h> int main() { int a[10],i,t,j; for(i=0;i<10;i++) { …… 题解列表 2017年12月13日 21 点赞 3 评论 2378 浏览 评分:8.4
WU-C语言程序设计教程(第三版)课后习题12.5 (C++代码) 摘要:解题思路:如果看完了我的代码 应该就明白了参考代码:#include<iostream> #include<sstream> #include<cstring> #include<cmath> …… 题解列表 2017年12月13日 4 点赞 0 评论 1854 浏览 评分:2.0
WU-C二级辅导-阶乘数列 (C语言代码) 摘要:参考代码:#include<stdio.h> double jiecheng(int n) { if(n==1) return 1; else return jiecheng(…… 题解列表 2017年12月13日 1 点赞 0 评论 1203 浏览 评分:0.0
WU-C二级辅导-统计字符 (C语言代码) 摘要:参考代码:#include<stdio.h> int main() { int a0=0,b=0,c=0,d=0,i; char a[100]; gets(a); for(i=0;…… 题解列表 2017年12月13日 12 点赞 2 评论 2547 浏览 评分:9.2
WU-C二级辅导-公约公倍 (C语言代码) 摘要:参考代码:#include<stdio.h> int max(int a,int b) { int c; while(b!=0) { c=a%b; a=b; b…… 题解列表 2017年12月13日 2 点赞 0 评论 1456 浏览 评分:0.0
蓝桥杯基础练习VIP-时间转换 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>int main(){ int H,M,S,t; scanf("%d",&t); …… 题解列表 2017年12月13日 0 点赞 0 评论 938 浏览 评分:0.0
数列有序 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,m,i,t,a[200],j; while(scanf("%d %d",&n,&m)!=…… 题解列表 2017年12月13日 0 点赞 0 评论 1126 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.7 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args) {…… 题解列表 2017年12月13日 8 点赞 0 评论 1808 浏览 评分:0.0
A+B for Input-Output Practice (III) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a,b,n; while(scanf("%d %d",&a,&b)!=EOF&&a!=0|…… 题解列表 2017年12月13日 0 点赞 0 评论 817 浏览 评分:0.0
A+B for Input-Output Practice (II) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a,b,n; scanf("%d",&n); while(n--) { …… 题解列表 2017年12月13日 1 点赞 0 评论 848 浏览 评分:0.0