- temp๋ผ๋ ์ถ๊ฐ ๋ณ์๋ฅผ ์ฌ์ฉํ์ฌ ๋ค์๊ณผ ๊ฐ์ด ๋ ๋ณ์ ๊ฐ์ ๊ตํ
temp = a;
a = b;
b = temp;
#include <stdio.h>
int main() {
int a = 5, b = 3;
int temp;
temp = a;
a = b;
b = temp;
printf("A is %d B is %d", a, b);
return 0;
}
โถ๋ฌธ์ : ์ ์ a์ ๊ฐ 3์ ๋ฃ๊ณ , ์ ์ b์ ๊ฐ 5๋ฅผ ๋ฃ์ ๋ค, ๋ ๊ฐ์ ๊ตํํ์ฌ a, b๋ฅผ ์ถ๋ ฅํ์ ๋ ์ซ์ 5, 3์ด ์์๋๋ก ๋์ค๋๋ก ํ๋ ํ๋ก๊ทธ๋จ์ ์์ฑํด ๋ณด์ธ์.
#include <stdio.h>
int main() {
int a = 3, b = 5;
int temp;
temp = a;
a = b;
b = temp;
printf("%d\n",a);
printf("%d",b);
return 0;
}
โถ๋ฌธ์ : ์ ์ a์ ๊ฐ 2๋ฅผ ๋ฃ๊ณ , ์ ์ b์ ๊ฐ 5๋ฅผ ๋ฃ์ ๋ค, ๋ ๊ฐ์ ๊ตํํ์ฌ a, b๋ฅผ ์์๋๋ก ์ถ๋ ฅํ๋ ํ๋ก๊ทธ๋จ์ ์์ฑํด ๋ณด์ธ์.
#include <stdio.h>
int main() {
int a = 2, b = 5;
int temp;
temp = a;
a = b;
b = temp;
printf("%d\n",a);
printf("%d",b);
return 0;
}
โถ๋ฌธ์ : ์ธ ์ ์ a, b, c์ ์ฐจ๋ก๋๋ก 5, 6, 7์ ๋ฃ๊ณ , b์๋ a๊ฐ์ , c์๋ b๊ฐ์, a์๋ c๊ฐ์ ๋ฃ์ด ์ถ๋ ฅํ๋ ํ๋ก๊ทธ๋จ์ ์์ฑํด ๋ณด์ธ์.
#include <stdio.h>
int main() {
int a = 5, b = 6, c = 7;
int temp;
temp = a;
a = c;
c = b;
b = temp;
printf("%d\n",a);
printf("%d\n",b);
printf("%d",c);
return 0;
}