#include <stdio.h>

void main()
{
   int a = 2;
   int b = 7;

   printf("a=%d, b=%d\n",a,b);

   b = a-b;
   a = a-b;
   b = a+b;

   printf("a=%d, b=%d\n",a,b);

}


c를 사용하지 않고 정수 a와b를 교체

최근 관련글 : ( http://www.tibyte.kr/158 )



#include <stdio.h>

void main(void) {
 printf("%d",function(60));
}
int function(int n)
{
 int a=0, c=1;
 for(;c;) c<=100 && (a+=c++)<n-c || (c=0);
 return a;
}


냉무

+ Recent posts