小南解题---完数--思路清晰,注解详细 摘要:'''zgn9460:49 2022/5/16'''#输出a=int(input().strip())aa=[]#循环所给数,除本身之前的数,并判断是不…… 题解列表 2022年05月16日 0 点赞 0 评论 458 浏览 评分:0.0
有规律的数列求和 摘要:解题思路:找数列的规律。注意事项:做除法运算,分子和分母是浮点数!参考代码:#include<stdio.h>int main() { int n; double s=0,x=1.0,y=2.…… 题解列表 2022年05月16日 0 点赞 0 评论 258 浏览 评分:0.0
自定义函数之整数处理 摘要:解题思路:注意事项:参考代码:#include<stdio.h> void InputString(int a[]); void ChangeString(int a[]); void …… 题解列表 2022年05月16日 0 点赞 0 评论 629 浏览 评分:0.0
[编程入门]自定义函数之数字后移 摘要:解题思路:注意事项:参考代码:#include "stdio.h" void move(int array[], int n, int offset) { int *p, *arr_end…… 题解列表 2022年05月16日 0 点赞 0 评论 477 浏览 评分:0.0
简单的字符串 (Java代码) 摘要:import java.util.Scanner; public class Main { public static void main(String[] args) { …… 题解列表 2022年05月16日 0 点赞 0 评论 418 浏览 评分:0.0
蓝桥杯算法提高VIP-前10名 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long n,a[1000];int main(){ cin>>n;…… 题解列表 2022年05月16日 0 点赞 0 评论 409 浏览 评分:0.0
蓝桥杯算法提高VIP-图形输出 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long n,a[1000];int main(){ cout<<"…… 题解列表 2022年05月16日 0 点赞 0 评论 403 浏览 评分:0.0
蓝桥杯算法提高VIP-字符串比较 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;string s,b;int main(){ cin>>s>>b; if(s=…… 题解列表 2022年05月16日 0 点赞 0 评论 398 浏览 评分:0.0
筛选N以内的素数 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<fstream>#include<algorithm>using namespace std;long long n…… 题解列表 2022年05月16日 0 点赞 0 评论 366 浏览 评分:0.0
二级C语言-计负均正 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long a,s;double t,t1;int main(){ for(…… 题解列表 2022年05月16日 0 点赞 0 评论 333 浏览 评分:0.0