敲代码的开始

继有了第一篇博客之后

我就迫不及待的要写第二篇博客了,为了记录一下,我敲的第一段代码。

刚开始还是用的Dev-C++

#include
int main()
{
	printf("Hello World!");
	return 0;
}

这大概是每个人都会敲的一段简单的代码了。

而后,买了自己的笔记本电脑,下载了Dev-C++

在自己的电脑上敲了第一段代码!

#include  
int main ()
{
	int a, b;
	scanf("%d %d",&a,&b);
	a=a+b;
	b=a-b;
	a=a-b;
	printf("%d %d",a,b); 
	return 0;
}

当然,在之后的学习中慢慢的知道了,另外两种方法。

交换两个变量

方法一:创建临时变量

#include
int main()
{
	int a, b;
	int temp=0;
	scanf("%d %d",&a,&b);
	temp=a;
	a=b;
	b=temp;
	printf("a=%d,b=%d",a,b);
	return 0;
}

方法二:加减法

#include
int main()
{
	int a, b;
	scanf("%d %d",&a,&b);
	a=a+b;
	b=a-b;
	a=a-b;
	printf("a=%d,b=%d",a,b);
	return 0;
}

方法三:异或法(二进制)//相同为0,不同为1

#include
int main()
{
	int a, b;
	scanf("%d %d",&a,&b);
	a=a^b;
	b=a^b;
	a=a^b;
	printf("a=%d,b=%d",a,b);
	return 0;
}

OK!

你可能感兴趣的:(感想)