2005年春浙江省计算机等级考试二级C 编程题(3) (C++代码) 摘要:解题思路:注意事项:1.代码长是因为{}占行,养成良好编程习惯。2.数组长度没必要像其他人那样用100,用6就可以了。参考代码:#include <iostream>#include <cmath>u…… 题解列表 2018年02月08日 0 点赞 0 评论 1114 浏览 评分:0.0
2006年春浙江省计算机等级考试二级C 编程题(1) (C++代码) 摘要:解题思路:注意事项:万一有0分的学生就gg了。参考代码:#include <iostream>using namespace std;int main(){ int grade, x(0), …… 题解列表 2018年02月08日 0 点赞 0 评论 931 浏览 评分:0.0
蓝桥杯基础练习VIP-龟兔赛跑预测 (C语言代码) 摘要:解题思路:如码注意事项:参考代码:#include<stdio.h>int main(){ int vt,vg,t,s,l; int i,j,k,sum; int mt,mg; scanf("%d%d…… 题解列表 2018年02月08日 0 点赞 0 评论 913 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.5 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<iomanip> using namespace std;int main(){ float a,b,c,d=0,e…… 题解列表 2018年02月08日 0 点赞 0 评论 898 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.6 (C++代码) 摘要:解题思路:注意事项:#include<iostream>using namespace std;int main(){ int j,i,h,n; for(i=100;i<=999;i++) { h=…… 题解列表 2018年02月08日 0 点赞 0 评论 839 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题9.1 (C++代码) 摘要:解题思路:注意事项:#include<iostream>using namespace std;int main(){ int a,b; cin>>a>>b; swap(a,b); c…… 题解列表 2018年02月08日 0 点赞 0 评论 748 浏览 评分:0.0
2003年秋浙江省计算机等级考试二级C 编程题(1) (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a[10],i,h=0,n=0; for(i=0;i<…… 题解列表 2018年02月08日 0 点赞 0 评论 673 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题7.3 (C语言代码) 摘要:解题思路:我是大一新生,还没有学数组,用简单粗暴的方法解决。注意事项:参考代码:#include <stdio.h> int main(){ …… 题解列表 2018年02月08日 1 点赞 0 评论 573 浏览 评分:0.0
蓝桥杯算法提高VIP-大数加法 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int s[2000],aa[1001],bb[1001];char a[1001],b[1001]…… 题解列表 2018年02月08日 0 点赞 0 评论 925 浏览 评分:0.0
用筛法求之N内的素数。 (C++代码) 摘要:解题思路:注意事项:参考代码://方法一#include<iostream>#include<cmath>using namespace std;int main() { int i, j, …… 题解列表 2018年02月08日 0 点赞 0 评论 869 浏览 评分:0.0