阶乘数列(1!--30!的和)python 摘要:su = int(0)for i in range(1, 31): an = int(1) for j in range(1, i+1): an = an * j su…… 题解列表 2022年04月28日 0 点赞 0 评论 345 浏览 评分:0.0
题目 1463: 蓝桥杯基础练习VIP-Sine之舞 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<algorithm>using namespace std;int n;int main(){ cin>>n; fo…… 题解列表 2022年04月28日 0 点赞 0 评论 380 浏览 评分:0.0
用函数的方法解决这个问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h> void input(int data[]){ int i; for(i=0;i<10;i++){ scanf("%d…… 题解列表 2022年04月28日 0 点赞 0 评论 251 浏览 评分:0.0
编写题解 1491: 蓝桥杯算法提高VIP-交换Easy 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; void print(int a[],int n) { for(int i…… 题解列表 2022年04月28日 0 点赞 0 评论 339 浏览 评分:0.0
编写题解 1502: 蓝桥杯算法提高VIP-利息计算 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h> using namespace std; int main() { double val,x,total…… 题解列表 2022年04月28日 0 点赞 0 评论 345 浏览 评分:0.0
c语言之温度转换 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ double n,c; scanf("%lf",&n); c=5.0/9.0*(n-32);/…… 题解列表 2022年04月28日 0 点赞 0 评论 348 浏览 评分:0.0
二级C语言-分段函数- if语句完成 摘要:解题思路:注意事项:细心一点就好了参考代码:#include<stdio.h>int main(){ double x,y; scanf("%lf",&x); if(x<1) …… 题解列表 2022年04月28日 0 点赞 0 评论 348 浏览 评分:0.0
二级C语言-同因查找(效率好像高一些) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ for(int i=10;i<=1000;i++) { if(i/42==i/42.0) p…… 题解列表 2022年04月28日 0 点赞 0 评论 384 浏览 评分:0.0
写的跟屎一样 摘要:解题思路:写的跟屎一样注意事项: 写的跟屎一样参考代码:#include<stdio.h> int a[10],i=0; int o1,o2,max,min,minp,maxp; v…… 题解列表 2022年04月28日 0 点赞 0 评论 402 浏览 评分:0.0
1860: 区间中最大的数 摘要:解题思路:注意事项:参考代码:n=int(input()) ls=list(map(int,input().split())) m=int(input()) for i in range(m):…… 题解列表 2022年04月29日 0 点赞 0 评论 715 浏览 评分:0.0