标签:scanf pre images 输出 image http .com 分享 color
#include<stdio.h> void swap(int *m,int *n) { int *i; i=m; m=n; n=i; } main() { int a,b; scanf("%d,%d",&a,&b); swap(&a,&b); printf("%d,%d",a,b); }总结:这个程序不怎么明白,不明白怎么只输出一个值。
标签:scanf pre images 输出 image http .com 分享 color
原文地址:http://www.cnblogs.com/haolei/p/6621746.html