변수 없이 두 개 수 내용 교환(변경)

229 단어 C 언어고치다
#include<stdio.h>
int main()
{
    int a,b;
    scanf("%d %d",&a,&b);
    a=a^b;
    b=a^b;
    a=a^b;
    printf("a=%d
",a);     printf("b=%d
",b) return 0; }

좋은 웹페이지 즐겨찾기