2004年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:直接看题解。。。注意事项:该题不只是要找到最大值,还要记录最大值的位置参考代码:include<stdio.h>#include<math.h>int main(){ int a[10]; …… 题解列表 2019年04月18日 0 点赞 0 评论 974 浏览 评分:0.0
C二级辅导-阶乘数列 (C语言代码)内存不够大。。。。 摘要:解题思路:直接看代码!!!注意事项:整形的任何种类都不够存储该题的结果。需要用double %e为实数指数形式输出参考代码:#include<stdio.h>double…… 题解列表 2019年04月18日 0 点赞 0 评论 531 浏览 评分:0.0
The 3n + 1 problem (Python代码) 摘要:解题思路: 这道题真的是....无法克说.... 太坑了吧也.................. 上图: 注意事项: 1. 输入 题解列表 2019年04月17日 1 点赞 2 评论 1766 浏览 评分:9.4
求圆的面积 (C语言代码)我又又水了一题 摘要:解题思路:参考代码:#include<stdio.h> int main(){ float r; scanf("%f",&r); printf("%.2f",r*r*3.14159265…… 题解列表 2019年04月17日 0 点赞 0 评论 1423 浏览 评分:9.9
[编程入门]数字的处理与判断 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<string.h> int main() { char a[100],i; scanf("%s"…… 题解列表 2019年04月17日 0 点赞 0 评论 999 浏览 评分:0.0
[编程入门]密码破译 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>int main(){ char array[100]; int i; sca…… 题解列表 2019年04月17日 0 点赞 0 评论 1490 浏览 评分:8.0
[递归]母牛的故事 (C语言代码) 摘要:解题思路:/*0->01->12->23->34->45->66->97->138->199->28f(n+3)-f(n+2)=f(n)*/注意事项:参考代码:#include <stdio.h>in…… 题解列表 2019年04月17日 0 点赞 0 评论 952 浏览 评分:0.0
字符逆序 (C++代码) 摘要:解题思路:注意事项:注意-1参考代码:#include<bits/stdc++.h>using namespace std;int main(){ char str[1000]; gets(str);…… 题解列表 2019年04月17日 0 点赞 0 评论 759 浏览 评分:0.0
A+B for Input-Output Practice (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>int main(){int n,n1,a,sum=0;scanf("%d",&n);for(int i=0;i<n;i++) { …… 题解列表 2019年04月17日 0 点赞 0 评论 455 浏览 评分:0.0
A+B for Input-Output Practice (VII) (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>int main(){ int a,b; while(~scanf("%d%d",&a,&b)) { …… 题解列表 2019年04月17日 0 点赞 0 评论 679 浏览 评分:0.0