U校园学习|题目:运行以下程序段后,变量t1的值是 ()public static void exchange(int x,int y) { int temp=x; X=y; Y=temp; }public static void main(String args[]) { int t1=2; int t2=3; exchange(t1,t2); }|U校园学习
2023-08-21 01:08:02
U校园学习|运行以下程序段后,变量t1的值是 ()public static void exchange(int x,i.......
328