蛇行矩阵 (C++代码) 摘要:#include <iostream>using namespace std;int main (){ int n,count=1; cin>>n; int *p=new int [n*n]; for…… 题解列表 2017年07月03日 0 点赞 0 评论 1008 浏览 评分:9.9
C语言程序设计教程(第三版)课后习题8.5 (C语言代码) 摘要:#include<stdio.h> #include<string.h> void fun(char str[]); int main(void) { char str[100]; s…… 题解列表 2017年07月03日 0 点赞 0 评论 1677 浏览 评分:9.9
C语言程序设计教程(第三版)课后习题9.6 (C语言代码) 摘要:#include<stdio.h> int main(void) { double a; scanf("%lf",&a); printf("%6.2lf\n",a); printf…… 题解列表 2017年07月03日 0 点赞 0 评论 1172 浏览 评分:9.9
人民币问题 (C语言代码) 摘要:#include<stdio.h>int main(){ int a, q, w, e,z,x,c ,fangfa = 0; scanf("%d", &a); z = a / 5; x = a / …… 题解列表 2017年07月04日 1 点赞 2 评论 1016 浏览 评分:9.9
2003年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:#include<stdio.h> #define N 10 int main() { float input[N], total= 0; int i,num = 0; for (i = …… 题解列表 2017年07月05日 0 点赞 0 评论 1341 浏览 评分:9.9
C二级辅导-等差数列 (C语言代码) 摘要:#include<stdio.h> int main() { int i, num, grade = 2, total = 0; scanf("%d",&num); for(i = 0 ; …… 题解列表 2017年07月05日 0 点赞 6 评论 3336 浏览 评分:9.9
2004年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:#include<stdio.h> double fact(int n); double mypow(double x ,int n); int main() { int i,n; d…… 题解列表 2017年07月06日 0 点赞 0 评论 981 浏览 评分:9.9
蛇行矩阵 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int n,i=0,j,k,m; int a[100][100]={0}; scanf("%d",&n);…… 题解列表 2017年07月09日 0 点赞 0 评论 1270 浏览 评分:9.9
C语言程序设计教程(第三版)课后习题11.8 (Java代码) 摘要:解题思路:注意事项:eclipse上运行无错,答案正确,但是在题目下运行显示运行错误所以本答案仅供参考参考代码:import java.util.HashSet;import java.util.It…… 题解列表 2017年07月13日 0 点赞 0 评论 1764 浏览 评分:9.9
C语言程序设计教程(第三版)课后习题6.6 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> main() { int x,a,b,c; for(x=100;x<=999;x++) { a=x/100; b=x%1…… 题解列表 2017年07月13日 0 点赞 0 评论 1263 浏览 评分:9.9