很多小东西,全部都要考虑周全,最大数和最小是 摘要: int n, m; int temp; while(scanf("%d %d",&n,&m) == 2){ if(n == 0 && m == 0){ break; } …… 题解列表 2022年03月06日 0 点赞 0 评论 314 浏览 评分:0.0
矩阵乘法--谦谦笔记 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int m, n;int a[30][30], b[30][30], c[30][30];in…… 题解列表 2022年03月06日 0 点赞 0 评论 333 浏览 评分:0.0
回形取数--简单 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){int m, n;cin >> m >> n;int num[500][…… 题解列表 2022年03月06日 0 点赞 0 评论 309 浏览 评分:0.0
有规律的数列求和(python) 摘要:N = int(input())a = 1b = 2sum_ = 0for i in range(1,N+1): sum_ += b/a temp = a a = b b = …… 题解列表 2022年03月06日 0 点赞 0 评论 409 浏览 评分:0.0
编写题解 1023: [编程入门]选择排序--冒泡 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,j,tmp; int arr[10]; for(i=0;i<10;i++){ …… 题解列表 2022年03月07日 0 点赞 0 评论 286 浏览 评分:0.0
编写题解 1023: [编程入门]选择排序--桶排 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int arr[500],a[10]; int m; for(int i=0;i<500;i…… 题解列表 2022年03月07日 0 点赞 0 评论 285 浏览 评分:0.0
小球下落,C语言,通俗易懂 摘要:解题思路:模拟小球下落的过程,下落弹回为一个过程,反复多次过程即可。注意事项:最后多算了一个,须要减掉参考代码:#include<stdio.h>#include<string.h>int main(…… 题解列表 2022年03月07日 0 点赞 0 评论 577 浏览 评分:0.0
二级C语言-自定义函数 摘要:解题思路:注意事项:注意一次输入俩个数据还是一次输入一个数据,输入俩次参考代码:d=input()a=d.split(' ')if len(a)==1: x=(input()) …… 题解列表 2022年03月07日 0 点赞 0 评论 443 浏览 评分:0.0
1093: 字符逆序 摘要:```cpp #include using namespace std; int main(){ char str[100]; gets(str); //用gets输…… 题解列表 2022年03月07日 0 点赞 0 评论 359 浏览 评分:0.0
2285: 蓝桥杯2018年第九届真题-螺旋折线 摘要:解题思路:注意事项:参考代码:x,y=map(int,input().split()) l=max(abs(x),abs(y)) if x == 0 and y==0: print(0)…… 题解列表 2022年03月07日 0 点赞 0 评论 561 浏览 评分:0.0