摘要: #include<stdio.h>#include<stdlib.h>int main(){ int a = 5; int b = 4; printf("a=%d,b=%b", a, b); int tmp; tmp = a; a = b; b = tmp; printf("a=%d,b=%b", 阅读全文
posted @ 2019-11-15 17:13 哈哈,呵呵,嘿嘿 阅读(323) 评论(0) 推荐(0)