摘要: ``` package com.echo; public class SwapTwoNumbers { public static void main(String[] args) { int a = 10; int b = 20; // 1)用第三方变量(开发用) // int temp = a; // a = b; // b = temp; // Syste... 阅读全文
posted @ 2018-07-24 19:35 微微_echo 阅读(2165) 评论(0) 推荐(0) 编辑