解题思路:
注意事项:
参考代码:
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语言程序设计教程(第三版)课后习题6.9 (C++代码)浏览:557 |
C语言程序设计教程(第三版)课后习题7.2 (C语言代码)浏览:705 |
C语言程序设计教程(第三版)课后习题6.8 (C语言代码)浏览:796 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:502 |
简单的a+b (C语言代码)浏览:673 |
【明明的随机数】 (C语言代码)浏览:841 |
C语言程序设计教程(第三版)课后习题11.1 (C语言代码)浏览:650 |
C语言程序设计教程(第三版)课后习题5.5 (C语言代码)浏览:581 |
星期判断机 (C语言代码)浏览:888 |
字符串输入输出函数 (C语言代码)浏览:2572 |