如果不想在最后多输出一个空格 摘要:解题思路:如果用光标扫输出样例时会发现最后一个数后面没有空格。打印到倒数第二个数组元素就停止,然后单独打印最后一个。注意事项:参考代码:#include<stdio.h>int main(){ …… 题解列表 2024年12月19日 0 点赞 0 评论 63 浏览 评分:0.0
题解 2913: 整数去重 菜鸟解法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,j,n; scanf("%d",&n); int a[n]; for(i=0…… 题解列表 2024年11月22日 1 点赞 0 评论 126 浏览 评分:10.0
题解,标记 摘要:```c #include int main() { int n; scanf("%d", &n); int arr[n]; for (int i =…… 题解列表 2024年11月07日 0 点赞 0 评论 57 浏览 评分:0.0
————派大星的极致运算————————之整数去重复&m 摘要:解题思路://1号数组存放读入数据 //2号数组存放不重复数组 //通过循环遍历进行比较看是否有重复注意事项://无参考代码:#includeint main() { int n; …… 题解列表 2024年07月31日 0 点赞 0 评论 115 浏览 评分:9.9
整数去重C小白解 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,j,is; scanf("%d",&n); int a[n+1],i; fo…… 题解列表 2024年02月26日 0 点赞 0 评论 175 浏览 评分:0.0
整数去重(c代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main() { int n; // 用于存储序列中数字的个数 scanf("%d", &n); …… 题解列表 2023年11月11日 0 点赞 0 评论 246 浏览 评分:9.9
整数去重(两种方法) 摘要:第一种是直接去掉重复元素(跟之前去掉空格那个思路一样): 参考代码: ```c #include int main() { int n; scanf("%d",&n); int …… 题解列表 2023年10月28日 0 点赞 0 评论 136 浏览 评分:0.0
2913: 整数去重(C语言) 摘要: #include int main() { int n; scanf("%d", &n); int a[n]; for (int i = 0; i < n; …… 题解列表 2023年07月27日 0 点赞 0 评论 224 浏览 评分:7.3
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,a[20000],i,j; scanf("%d", &n); for (i = 0…… 题解列表 2023年06月10日 0 点赞 0 评论 99 浏览 评分:0.0
普通的写法 摘要:```cpp #include #include #include using namespace std; const int N=20000; int a[N],b[N]; int …… 题解列表 2023年05月01日 0 点赞 1 评论 272 浏览 评分:9.9