当前位置:   article > 正文

大三菜鸡开始蓝桥杯的刷题之路_大三参加蓝桥杯晚吗

大三参加蓝桥杯晚吗

[蓝桥杯]交换

在这里插入图片描述Easy

`import java.util.Scanner;
public class Main {
public static void main(String[] args) {
    Scanner scanner = new Scanner(System.in);
    int a=scanner.nextInt();
    int b=scanner.nextInt();
    int[] x=new int[a];
    for (int i = 0; i <a ; i++) {
        x[i]=scanner.nextInt();
    }
    for (int i = 0; i <b ; i++) {
      int f=scanner.nextInt();
      int t=scanner.nextInt();
      int temp=0;
      temp=x[f-1];
      x[f-1]=x[t-1];
      x[t-1]=temp;
    }
    System.out.println();
    for (int i = 0; i <x.length ; i++) {
        System.out.println(x[i]);
    }
}
}
`
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/924454
推荐阅读
相关标签
  

闽ICP备14008679号