摘要: 声明两个变量:int n1 = 10, n2 = 20;要求将两个变量交换,最后输出n1为20,n2为10。交换两个变量,使用第三个变量! class Program { static void Main(string[] args) { int n1 = 10; int n2 = 20; int 阅读全文
posted @ 2014-10-24 10:31 代码沉思者 阅读(417) 评论(0) 推荐(0)