解题思路:
注意事项:
参考代码:
import java.util.Scanner;
public class Main {
static
Scanner sc = new Scanner(System.in);
public static void C(int M,int[] array){
for(int i=0;i<M;i++){
int A = sc.nextInt();
int B = sc.nextInt();
int temp = array[A-1];
array[A-1] = array[B-1];
array[B-1] = temp;
}
for(int i=0;i<array.length;i++){
System.out.println(array[i]);
}
}
public static void main(String[] arg){
int N = sc.nextInt();
int M = sc.nextInt();
int[] array = new int[N];
for(int i=0;i<N;i++){
array[i] = sc.nextInt();
}
C(M, array);
}
}
0.0分
1 人评分
C语言程序设计教程(第三版)课后习题9.4 (Java代码)浏览:1446 |
A+B for Input-Output Practice (V) (C++代码)浏览:485 |
C语言程序设计教程(第三版)课后习题5.6 (C语言代码)浏览:563 |
简单的a+b (C语言代码)浏览:641 |
简单的a+b (C语言代码)浏览:661 |
1014题解浏览:524 |
A+B for Input-Output Practice (C语言代码)浏览:505 |
1128题解(返回值为数组的情况)浏览:571 |
简单的a+b (C语言代码)浏览:1024 |
2003年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码)浏览:567 |