1025: [编程入门]数组插入处理 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main(void) { int num[10]; int i, t = 10, j; for (i = 0;…… 题解列表 2023年01月18日 0 点赞 0 评论 244 浏览 评分:0.0
绝对值排序 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int n; while(scanf("%d",&n)!=E…… 题解列表 2023年01月18日 0 点赞 0 评论 276 浏览 评分:0.0
A+B for Input-Output Practice (IV) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int i,n=0; int a[100]={0}; while(ci…… 题解列表 2023年01月18日 0 点赞 0 评论 204 浏览 评分:0.0
能量项链python代码 摘要:解题思路:注意事项:参考代码:n=int(input())a=list(map(int,input().split()))a=a[:n:]a.extend(a[:])a.insert(0,0)f = …… 题解列表 2023年01月18日 0 点赞 0 评论 414 浏览 评分:0.0
模拟计算器(水题) 摘要:```c #include int main(){ int a,b; char ch; scanf("%d%d %c",&a,&b,&ch); switch(ch){ …… 题解列表 2023年01月18日 0 点赞 0 评论 294 浏览 评分:0.0
蓝桥杯算法训练VIP-链表数据求和操作 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;struct Complex{ int imag; int real…… 题解列表 2023年01月18日 0 点赞 0 评论 293 浏览 评分:0.0
1352: Matrix67的派对 摘要:解题思路:注意事项:参考代码:#include <iostream> #include <algorithm> using namespace std; int n, k; int h…… 题解列表 2023年01月18日 0 点赞 0 评论 433 浏览 评分:0.0
每日打卡题目 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;const int N = 1e7 + 5;int arry[N];int main…… 题解列表 2023年01月18日 0 点赞 0 评论 271 浏览 评分:0.0
日常打卡1.18 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;const int N = 1e7 + 5;int arry[N];int reve…… 题解列表 2023年01月18日 0 点赞 0 评论 239 浏览 评分:0.0
最小绝对值 摘要:num = list(map(int, input().split())) # 对原来十个数建立列表储存num1 = list(map(abs, num)) # 对原列表数绝对值储存sum = 0…… 题解列表 2023年01月18日 0 点赞 0 评论 274 浏览 评分:0.0