摘要: public class Zuoye { public static void main(String[] args) { int a=10; int b=8; int c; c=a; a=b; b=c; System.out.println("a="+a+","+"b="+b); } 1、已知a, 阅读全文
posted @ 2020-03-19 11:40 樊一丁 阅读(163) 评论(0) 推荐(0) 编辑