2006年春浙江省计算机等级考试二级C 编程题(2) (C语言描述(最简单题解,不用自定义函数,没有之一) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<math.h> int main() { int n,i,m; double a,b,su…… 题解列表 2019年03月07日 1 点赞 2 评论 1124 浏览 评分:7.0
永远的丰碑 (C++代码)永远的水题 摘要:解题思路: 永远的水题目参考代码:#include<iostream> using namespace std; int main() { int n; while(c…… 题解列表 2019年03月07日 0 点赞 0 评论 923 浏览 评分:0.0
C语言训练-求s=a+aa+aaa+aaaa+aa...a的值 (C++代码) 摘要:解题思路:一个递归注意事项:参考代码:#include<iostream>using namespace std;int fun(int a1,int n1){ if(n1==1) return a1…… 题解列表 2019年03月06日 0 点赞 0 评论 766 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题7.3 (C语言代码) 摘要:解题思路:注意事项:参考代码:笨办法,好懂#include<stdio.h>int main(){int i,t,n,a[3][3]; for(i=0;i<3;i++){ for(…… 题解列表 2019年03月06日 5 点赞 0 评论 576 浏览 评分:0.0
BREEZE------之你猜 有没有小技巧系列(用的C) 摘要:一个三位数可以拆成三位来,然后利用math。h里的pow函数就可以方便的解决问题啦!#include<stdio.h>#include<math.h>int main(){ int n,s1,s…… 题解列表 2019年03月06日 0 点赞 0 评论 1029 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.2 可以拓展你的运用哦 摘要:解题思路:利用字符串数组遇到 '\0'停止录入。再利用strcmp函数比较即可注意事项:排序的运用参考代码:#include<stdio.h>#include<stdlib.h>#in…… 题解列表 2019年03月06日 0 点赞 0 评论 989 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.10 (C语言代码) 摘要:解题思路: S1 = S 第一天 吃 1/2 * S1 + 1 剩 S2 = S1 - (1/2 * S1 + 1) = 1/2 * S1 - 1   题解列表 2019年03月06日 0 点赞 0 评论 595 浏览 评分:0.0
蓝桥杯算法提高VIP-第二大整数 (C语言代码)新手可以来看一下:冒泡法!!! 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i=0,a[20]; int m,n; while(scanf("%d",&a[i])!=EOF) { …… 题解列表 2019年03月06日 0 点赞 3 评论 623 浏览 评分:0.0
C二级辅导-公约公倍 (Java代码) 摘要:import java.util.Scanner;public class Main { public static void main(String[] args) { Scan…… 题解列表 2019年03月06日 0 点赞 0 评论 924 浏览 评分:0.0
C二级辅导-公约公倍 (Java代码) 摘要:import java.util.Scanner;public class Main { public static void main(String[] args) { Scan…… 题解列表 2019年03月06日 0 点赞 0 评论 1182 浏览 评分:9.9