Sn的公式求和 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,sn=0; int t = 0; scanf("%d", &n); for (int i = 1;…… 题解列表 2023年10月26日 0 点赞 0 评论 481 浏览 评分:0.0
2226: 蓝桥杯算法训练-排序 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<bits/stdc++.h> using namespace std; int main() { …… 题解列表 2023年10月26日 0 点赞 0 评论 440 浏览 评分:0.0
2097: 单词得分---全转换为大写比较加分 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<bits/stdc++.h> using namespace std; int main() { …… 题解列表 2023年10月26日 0 点赞 0 评论 550 浏览 评分:0.0
2096: 打印平行四边形 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int n; cin>>n; …… 题解列表 2023年10月26日 0 点赞 0 评论 503 浏览 评分:0.0
2182: [编程入门]打印图案 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { cout<<" * "<<endl; …… 题解列表 2023年10月26日 0 点赞 0 评论 604 浏览 评分:0.0
2082: 蓝桥杯基础练习-十六进制转十进制 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { long long int num; …… 题解列表 2023年10月26日 0 点赞 0 评论 625 浏览 评分:0.0
2080: 蓝桥杯基础练习-十六进制转八进制 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int n; cin>>n; …… 题解列表 2023年10月26日 0 点赞 0 评论 460 浏览 评分:0.0
信息学奥赛一本通T1616-A的B次方(快速幂) 摘要:```python def f(Base,Index,Num): res=1 while Index!=0: if Index&1: …… 题解列表 2023年10月26日 0 点赞 0 评论 591 浏览 评分:9.9
蓝桥杯算法提高VIP-Quadratic Equation 摘要:解题思路:double sqrt(double x)float sqrtf(float x)long double sqrtl(long double x)注意事项:参考代码:#include<std…… 题解列表 2023年10月26日 0 点赞 0 评论 470 浏览 评分:0.0
四种方式进行字符串的倒叙输出 #define_CRT_SECURE_NO_WARNINGS#include#include#include//intmain(){`//chars[50];//scanf("%s",s);//char*s1=s;//intn=strlen(s);//for(inti=n-1;i>=0;i--){// 题解列表 2023年10月26日 0 点赞 0 评论 583 浏览 评分:0.0