定义两个函数,分别对应奇数和偶数的情况 摘要:解题思路:定义函数--》while循环定义--》if else语句判断。注意事项:用while循环可以完美定义结束条件。参考代码:#include<stdio.h>int O(int n){ i…… 题解列表 2023年01月06日 0 点赞 0 评论 422 浏览 评分:9.9
蓝桥杯算法提高VIP-删除数组中的0元素 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,a[1000],i,t=0; scanf("%d",&n); for(…… 题解列表 2023年01月06日 0 点赞 0 评论 459 浏览 评分:0.0
九九乘法表(详细) 摘要:解题思路:双重循环注意事项:题目要求乘积占2位且左对齐,因此,乘积的格式为%-2d参考代码:#include<stdio.h>int main(){ int i,j; for(i=1;i<…… 题解列表 2023年01月06日 0 点赞 0 评论 362 浏览 评分:0.0
编写题解 1016: [编程入门]水仙花数判断 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main() { int x,y,z; for(int a=100; a<1000; …… 题解列表 2023年01月06日 0 点赞 0 评论 267 浏览 评分:0.0
蓝桥杯算法训练VIP-最长字符串(C语言) 摘要:#include <stdio.h> #include <string.h> int main() { int i; int n = 0; char p[100] …… 题解列表 2023年01月06日 0 点赞 0 评论 364 浏览 评分:0.0
编写题解 1015: [编程入门]求和训练 摘要:解题思路:注意事项:cout<<std::fixed<<setprecision(2)<<xxx=====cout<<setiosflags(ios::fixed)<<setprecision(2)<…… 题解列表 2023年01月06日 0 点赞 0 评论 295 浏览 评分:0.0
c语言调用函数解决 摘要:解题思路:函数调用的方法,需要用全局变量,不然可能会出现运行错误注意事项:函数调用的方法,需要用全局变量,不然可能会出现运行错误参考代码:#include<stdio.h>int a,b,m,min,…… 题解列表 2023年01月06日 0 点赞 0 评论 368 浏览 评分:0.0
编写题解 1014: [编程入门]阶乘求和 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main() { int a,m; long long sum=0; cin>>a; …… 题解列表 2023年01月06日 0 点赞 0 评论 295 浏览 评分:0.0
2150拦截导弹问题 简单贪心算法(注释很详细) 摘要://贪心规则:炮弹打过来,让当前高度最低的系统去应对 //如果应对不了,就加一个系统,最后统计系统数 #include<bits/stdc++.h> int s[1005];//系统sy…… 题解列表 2023年01月06日 0 点赞 0 评论 535 浏览 评分:9.9
暴力解法(凑字数。。。。。。。 摘要:解题思路:def sushu(n): if n==2: return 2 for i in range(2, n): if n % i == 0: …… 题解列表 2023年01月06日 0 点赞 0 评论 440 浏览 评分:0.0