2913: 整数去重 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;const int N=20010;int a[N];int main() { …… 题解列表 2023年12月29日 0 点赞 0 评论 157 浏览 评分:0.0
2913整数去重 摘要:解题思路:注意事项:参考代码:public class 整数去重 { public static void main(String [] args){ Scanner sc=new…… 题解列表 2023年06月05日 0 点赞 0 评论 195 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,a[20000],i,j; scanf("%d", &n); for (i = 0…… 题解列表 2023年06月10日 0 点赞 0 评论 133 浏览 评分:0.0
整数去重(两种方法) 摘要:第一种是直接去掉重复元素(跟之前去掉空格那个思路一样): 参考代码: ```c #include int main() { int n; scanf("%d",&n); int …… 题解列表 2023年10月28日 0 点赞 0 评论 203 浏览 评分:0.0