蓝桥杯算法训练VIP-特殊的数字四十 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int a;int main() { for(int i=1000;i<100…… 题解列表 2022年04月29日 0 点赞 0 评论 280 浏览 评分:0.0
蓝桥杯算法训练VIP-水仙花 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int a,b,c,d;int main() { cin>>a; b=a…… 题解列表 2022年04月29日 0 点赞 0 评论 302 浏览 评分:0.0
二级C语言-温度转换 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int ctof(int c);int main() { int c; …… 题解列表 2022年04月29日 0 点赞 0 评论 278 浏览 评分:0.0
二级C语言-温度转换 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;double a;//要用double int main(){ cin>>a; pr…… 题解列表 2022年04月29日 0 点赞 0 评论 363 浏览 评分:0.0
自定义函数处理最大公约数与最小公倍数 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int a,b;int gys(int a,int b)//最大公约数{ for(i…… 题解列表 2022年04月29日 0 点赞 0 评论 306 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.6 (C语言代码) 摘要:解题思路:用指针来做会好做一些,指针加几就是往后移几个输入字符串的话,我倾向于用gets和puts再用strlen来计算字符串的长度再结合指针第一次写,不足之处还希望大家指出。注意事项:参考代码:#i…… 题解列表 2022年04月29日 0 点赞 0 评论 362 浏览 评分:0.0
[编程入门]最大公约数与最小公倍数 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int a,b;int main(){ cin>>a>>b; for(int i=m…… 题解列表 2022年04月29日 0 点赞 0 评论 335 浏览 评分:0.0
python求结构体之成绩统计,好理解 摘要:解题思路:先把每个学生的信息装在一个列表里,外层再套一个列表装全部同学的个人信息,再把每科分数单独提出来注意事项:参考代码:n=int(input())list=[]list2=[]list3=[]l…… 题解列表 2022年04月29日 0 点赞 0 评论 419 浏览 评分:0.0
用筛法求之N内的素数。 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int n,a[1000005];int main(){ cin>>n; for(i…… 题解列表 2022年04月29日 0 点赞 0 评论 299 浏览 评分:0.0
[编程入门]水仙花数判断 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,i; for(i=100; i<1000; i++){ a = i…… 题解列表 2022年04月29日 0 点赞 0 评论 384 浏览 评分:9.9