case001:Learning C Language......
摘要:
learning c language,1 lesson per day,keep on,do more practise.origin:#include <stdio.h>main(){ int a,b; a=2;b=5; swap(a,b); printf("a=%d,b+%d\n",a,b);} swap(x,y) int x,y;{ int t; t=x; x=y; y=t; printf("x=%d,y=%d\n",x,y);}finished#include <stdio.h>void swap(int x, int 阅读全文
posted @ 2011-03-12 14:09 tianzhanfei 阅读(218) 评论(0) 推荐(0)
浙公网安备 33010602011771号