[编程基础]输入输出练习之输出图案-题解(C语言代码) 摘要:解题思路:注意事项:定义类型要定义字符型的变量----char参考代码:#include<stdio.h>int main(){ char c; c=getchar(); …… 题解列表 2020年07月01日 0 点赞 0 评论 4107 浏览 评分:9.9
蓝桥杯算法提高VIP-质因数-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int N; int i; scanf("%d",&N); printf("%d=",N); for(i=2;i…… 题解列表 2020年07月01日 0 点赞 0 评论 586 浏览 评分:0.0
[编程入门]自由下落的距离计算-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ double a,t=0; int b; scanf("%lf%d",&a,&b); while(b>0) { …… 题解列表 2020年06月30日 0 点赞 0 评论 418 浏览 评分:0.0
[编程入门]结构体之时间设计-题解(C语言代码) 摘要:#include struct str { int year; int mon; int day; }s; int main() { int m; scanf("%d%d…… 题解列表 2020年06月30日 0 点赞 0 评论 665 浏览 评分:0.0
P1000-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int x,y; scanf("%d%d",&x,&y);//输入两个数 printf(…… 题解列表 2020年06月30日 0 点赞 0 评论 663 浏览 评分:8.0
[编程入门]自定义函数处理最大公约数与最小公倍数-题解(C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<iomanip>#include<cmath>using namespace std;int get_gongbei…… 题解列表 2020年06月30日 0 点赞 0 评论 984 浏览 评分:0.0
蓝桥杯2014年第五届真题-拼接平方数-题解(C++代码) 摘要:``` #include #include using namespace std; int f[1005]; int d[30]; int sqrtnum(int x) …… 题解列表 2020年06月30日 0 点赞 0 评论 584 浏览 评分:0.0
[编程入门]数字逆序输出-题解(C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<iomanip>#include<cmath>using namespace std;int main(){ int…… 题解列表 2020年06月30日 0 点赞 0 评论 513 浏览 评分:9.3
[编程入门]数组插入处理-题解(C++代码)简单易懂 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<iomanip>#include<cmath>using namespace std;int main(){ int…… 题解列表 2020年06月30日 0 点赞 0 评论 353 浏览 评分:0.0
[编程入门]电报加密-题解(C语言代码) 摘要:## 解题思路 利用取模运算 ## 代码 ```c #include #include int main(void) { char str[100]; int i = 0;…… 题解列表 2020年06月30日 0 点赞 1 评论 538 浏览 评分:8.7