题解 2913: 整数去重

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

2913: 整数去重

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;const int N=20010;int  a[N];int main() {  ……

2913整数去重

摘要:解题思路:注意事项:参考代码:public class 整数去重 {    public static void main(String [] args){        Scanner sc=new……

c语言代码解决问题

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int n,a[20000],i,j;    scanf("%d", &n);    for (i = 0……

整数去重(两种方法)

摘要:第一种是直接去掉重复元素(跟之前去掉空格那个思路一样): 参考代码: ```c #include int main() { int n; scanf("%d",&n); int ……