题解 2233: 蓝桥杯算法训练-图形显示 摘要:解题思路:注意事项:注意换行写到第一个循环中参考代码:#include<bits/stdc++.h>using namespace std;int main(){ long l…… 题解列表 2025年01月12日 0 点赞 0 评论 102 浏览 评分:0.0
编写题解 2233: 蓝桥杯算法训练-图形显示 摘要:解题思路:注意事项:两个循环参考代码:#include <iostream>using namespace std;int main(){ long long n…… 题解列表 2025年01月12日 0 点赞 0 评论 87 浏览 评分:0.0
编写题解 2233: 蓝桥杯算法训练-图形显示 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){long long n;cin>>n;…… 题解列表 2025年01月12日 1 点赞 0 评论 139 浏览 评分:0.0
题解 2819: 数字反转 摘要:解题思路:注意事项:注意第7行要写一个合并数位的小算法;第8行要写一个分解数列的算法参考代码:#include<bits/stdc++.h>using namespace std;int …… 题解列表 2025年01月12日 1 点赞 0 评论 140 浏览 评分:0.0
编写题解 2233: 蓝桥杯算法训练-图形显示 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){long long n;cin>>n;…… 题解列表 2025年01月12日 0 点赞 0 评论 114 浏览 评分:0.0
题解 1671: 小九九 摘要:解题思路:注意事项:#include <bits/stdc++.h>using namespace std;int main(){ for (int i=1;i&l…… 题解列表 2025年01月12日 0 点赞 0 评论 219 浏览 评分:0.0
小九九题解记得给好评 摘要:解题思路:注意事项:注意打印乘积结果是用列乘以行!!!不是行乘以列!!!参考代码:#include<bits/stdc++.h>using namespace std;int main()…… 题解列表 2025年01月12日 0 点赞 0 评论 243 浏览 评分:0.0
编写题解 1671: 小九九 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ for (int i=…… 题解列表 2025年01月12日 0 点赞 0 评论 361 浏览 评分:0.0
编写题解 2007: 计算输入数据的和与乘积 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){i…… 题解列表 2025年01月12日 1 点赞 0 评论 122 浏览 评分:10.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