交换两个数字,不借助于第三个变量的三种简单的方法。
摘要:
1 #include <stdio.h> 2 int main() 3 { 4 int a = 10,b=20; 5 // solution 1: a = a+b; b = a-b; a = a-b; 6 printf("*********************************************\n"); 7 printf("Change two number without another number!!!!\n"); 8 printf("************************************* 阅读全文
posted @ 2012-03-23 16:18 NewPanderKing 阅读(1620) 评论(1) 推荐(0) 编辑