[编程入门]自定义函数之字符串拷贝 (C语言代码) 摘要:解题思路: 字符串拷贝其实是可以直接改变循环输出就ok 注意事项: 循环的开始的值参考代码:#include<stdio.h>#include<malloc.h> int main(…… 题解列表 2019年04月17日 0 点赞 0 评论 414 浏览 评分:0.0
[编程入门]结构体之时间设计 (C++代码) 摘要:解题思路: 大家都懂注意事项: 应该错误都会犯在月份这里 ,5月15日应该知识算前面四月,多理解这点就ok了参考代码:#include<bits/stdc++.h>using namesp…… 题解列表 2019年04月17日 0 点赞 0 评论 644 浏览 评分:0.0
[编程入门]结构体之成绩记录 (C++代码) 摘要:解题思路: 看题注意事项:参考代码:#include<bits/stdc++.h>using namespace std;struct studen{ char xuehao[10]; char…… 题解列表 2019年04月17日 0 点赞 0 评论 701 浏览 评分:0.0
易错点 (C++代码) 摘要:解题思路:注意事项:直接说注意实现 ,百分之五十错误应该都是 m = 1的情况 ,要注意 素数是从2开始的。没什么说的,贴代码了参考代码:#include<bits/stdc++.h>using na…… 题解列表 2019年04月17日 0 点赞 0 评论 743 浏览 评分:0.0
C二级辅导-进制转换 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n; scanf("%d",&n); printf(…… 题解列表 2019年04月17日 0 点赞 0 评论 622 浏览 评分: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 评论 539 浏览 评分: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 评论 385 浏览 评分:0.0
字符逆序 (C++代码) 摘要:解题思路:注意事项:注意-1参考代码:#include<bits/stdc++.h>using namespace std;int main(){ char str[1000]; gets(str);…… 题解列表 2019年04月17日 0 点赞 0 评论 591 浏览 评分: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 评论 749 浏览 评分:0.0
[编程入门]数字的处理与判断 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<string.h> int main() { char a[100],i; scanf("%s"…… 题解列表 2019年04月17日 0 点赞 0 评论 813 浏览 评分:0.0