阅读背景:

将a和b交换的3种方法

来源:互联网 
方法1
#include <stdio.h>
int main(){
	int a,b;
	int c;
	scanf("%d%d",&a,&b);
	c=a;
	a=b;
	b=c;
	printf("%d%d",a,b);
	return 0;
} #include <stdio.h>
int main(){
	int a,b;



你的当前访问异常,请进行认证后继续阅读剩余内容。

分享到: