刚开始还是用的Dev-C++
#include
int main()
{
printf("Hello World!");
return 0;
}
这大概是每个人都会敲的一段简单的代码了。
在自己的电脑上敲了第一段代码!
#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;
}
#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;
}