[编程入门]结构体之成绩记录 (C++代码) 摘要:解题思路: 看题注意事项:参考代码:#include<bits/stdc++.h>using namespace std;struct studen{ char xuehao[10]; char…… 题解列表 2019年04月17日 0 点赞 0 评论 921 浏览 评分:0.0
易错点 (C++代码) 摘要:解题思路:注意事项:直接说注意实现 ,百分之五十错误应该都是 m = 1的情况 ,要注意 素数是从2开始的。没什么说的,贴代码了参考代码:#include<bits/stdc++.h>using na…… 题解列表 2019年04月17日 0 点赞 0 评论 1009 浏览 评分:0.0
C二级辅导-进制转换 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n; scanf("%d",&n); printf(…… 题解列表 2019年04月17日 0 点赞 0 评论 938 浏览 评分: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 评论 823 浏览 评分: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 评论 573 浏览 评分:0.0
字符逆序 (C++代码) 摘要:解题思路:注意事项:注意-1参考代码:#include<bits/stdc++.h>using namespace std;int main(){ char str[1000]; gets(str);…… 题解列表 2019年04月17日 0 点赞 0 评论 919 浏览 评分:0.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 评论 1095 浏览 评分:0.0
[编程入门]数字的处理与判断 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<string.h> int main() { char a[100],i; scanf("%s"…… 题解列表 2019年04月17日 0 点赞 0 评论 1136 浏览 评分:0.0
C二级辅导-阶乘数列 (C语言代码)内存不够大。。。。 摘要:解题思路:直接看代码!!!注意事项:整形的任何种类都不够存储该题的结果。需要用double %e为实数指数形式输出参考代码:#include<stdio.h>double…… 题解列表 2019年04月18日 0 点赞 0 评论 640 浏览 评分:0.0
2004年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:直接看题解。。。注意事项:该题不只是要找到最大值,还要记录最大值的位置参考代码:include<stdio.h>#include<math.h>int main(){ int a[10]; …… 题解列表 2019年04月18日 0 点赞 0 评论 1116 浏览 评分:0.0