编写题解 2233: 蓝桥杯算法训练-图形显示 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){long long n;cin>>n;…… 题解列表 2025年01月12日 1 点赞 0 评论 136 浏览 评分:0.0
题解 2819: 数字反转 摘要:解题思路:注意事项:注意第7行要写一个合并数位的小算法;第8行要写一个分解数列的算法参考代码:#include<bits/stdc++.h>using namespace std;int …… 题解列表 2025年01月12日 1 点赞 0 评论 139 浏览 评分:0.0
编写题解 2233: 蓝桥杯算法训练-图形显示 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){long long n;cin>>n;…… 题解列表 2025年01月12日 0 点赞 0 评论 112 浏览 评分:0.0
题解 1671: 小九九 摘要:解题思路:注意事项:#include <bits/stdc++.h>using namespace std;int main(){ for (int i=1;i&l…… 题解列表 2025年01月12日 0 点赞 0 评论 217 浏览 评分:0.0
小九九题解记得给好评 摘要:解题思路:注意事项:注意打印乘积结果是用列乘以行!!!不是行乘以列!!!参考代码:#include<bits/stdc++.h>using namespace std;int main()…… 题解列表 2025年01月12日 0 点赞 0 评论 240 浏览 评分:0.0
编写题解 1671: 小九九 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ for (int i=…… 题解列表 2025年01月12日 0 点赞 0 评论 354 浏览 评分:0.0
编写题解 1015: [编程入门]求和训练python 摘要:参考代码:a,b,c=map(int,input().split())s1=0s2=0s3=0for i in range(1,a+1): s1+=ifor i in ran…… 题解列表 2025年01月12日 0 点赞 0 评论 367 浏览 评分:0.0
while的你会了,来学习一下for吧 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int n,i,sum; for(;;){ scanf("%d",&…… 题解列表 2025年01月12日 0 点赞 0 评论 179 浏览 评分:0.0
在我上一个题解基础下,加上前面那个scanf就可以了 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int n,i,sum,j,p;//注意多定义两个 scanf("…… 题解列表 2025年01月12日 0 点赞 0 评论 165 浏览 评分:0.0
还是for循环 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int n,i,sum; for(;;){ if (scanf(&quo…… 题解列表 2025年01月12日 0 点赞 0 评论 172 浏览 评分:0.0