2004年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:#include<stdio.h> #include<math.h> int main(void) { int i,t,m,a[10]; for(i=0;i<10;i++) …… 题解列表 2017年07月24日 0 点赞 9 评论 1252 浏览 评分:7.3
2006年春浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:#include<iostream> #include<cstdio> using namespace std; int main(void) { int a=0,b=0,c=0,t…… 题解列表 2017年07月24日 1 点赞 0 评论 1943 浏览 评分:7.3
人见人爱A+B (C++代码) 摘要:解题思路:注意事项:参考代码:#include <cstdio>int main(){ int x1,x2,y1,y2,z1,z2; int n; scanf("%d",&n); wh…… 题解列表 2017年07月26日 1 点赞 2 评论 1650 浏览 评分:7.3
Biggest Number (错误代码时间超限制) 摘要:#include<stdio.h> char result[50]={'\0'}; char s[50]; int len=0,a[15][15],row,col; void …… 题解列表 2017年08月25日 0 点赞 0 评论 2694 浏览 评分:7.3
C语言程序设计教程(第三版)课后习题6.1 (C++代码)__gcd()是已经写好的函数,可以直接使用 摘要:解题思路:调用__gcd()函数计算最大公约数,然后最小公倍数=a*b/最大公约数。。注意事项:顺序反了,,然后第一次提交WA,,,233333参考代码:#include<stdio.h> #inc…… 题解列表 2017年07月28日 2 点赞 0 评论 2359 浏览 评分:7.3
C语言程序设计教程(第三版)课后习题8.8 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <cstdio>#define charge(a,b){int t= a;a=b;b=t;}//宏定义交换函数int main(){ int a,…… 题解列表 2017年07月31日 0 点赞 0 评论 974 浏览 评分:7.3
点我有惊喜!你懂得! 摘要:解题思路:愉快的心情才能使自己身心投入!每题笑话: 蹲坑的时候,手机只剩6%的电了,我寻思用完所有电就擦屁股走人。 看了一会这坨,老爸好像内急敲门:儿子好了没有啊。 我不假思索地回了句:马上,还有2%…… 题解列表 2017年08月08日 18 点赞 14 评论 2199 浏览 评分:7.3
2^k进制数 (C++代码)使用递归方法 摘要:#include<cstdio> #include<iostream> using namespace std; char s[30000]; int k , w ; int len; i…… 题解列表 2017年08月18日 2 点赞 1 评论 918 浏览 评分:7.3
高精度加法 (C++代码)(大数加法) 摘要:解题思路:大数加法注意事项:大数加法参考代码:#include <stdio.h> #include <cstring> void add(char a[], char b[])//a=a+b…… 题解列表 2017年08月26日 1 点赞 0 评论 1396 浏览 评分:7.3
C语言程序设计教程(第三版)课后习题9.8 (Java代码) 摘要:import java.util.Scanner; //抄别人的 import java.text.DecimalFormat; public class Main { static Dec…… 题解列表 2017年08月31日 2 点赞 0 评论 2174 浏览 评分:7.3