题解 2913: 整数去重

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

筛选

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 ……

整数去重C小白解

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

题解,标记

摘要:```c #include int main() { int n; scanf("%d", &n); int arr[n]; for (int i =……

如果不想在最后多输出一个空格

摘要:解题思路:如果用光标扫输出样例时会发现最后一个数后面没有空格。打印到倒数第二个数组元素就停止,然后单独打印最后一个。注意事项:参考代码:#include<stdio.h>int main(){    ……

整数去重 思路清晰

摘要:解题思路:先输入数字 然后对数字本身遍历如果相同c=1并退出,              如果不同c=0并把不重复的值赋给b数组 最后输出b数组的元素即可注意事项:参考代码:#include<stdi……

普通的写法

摘要:```cpp #include #include #include using namespace std; const int N=20000; int a[N],b[N]; int ……

整数去重(c代码)

摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main() {     int n; // 用于存储序列中数字的个数     scanf("%d", &n); ……