#include<stdio.h>
int main(int a, int b)
{
if (a == 1)
b = 0;
if (a <= 100){
b += a++;
main(a, b);
}
else if (a > 100)
printf("%d\n", b);
return 0;
}
존나 잘됨 ㅋㅋ
I'm your little butterfly. Green, black and blue make the colors in the sky!
#include<stdio.h>
int main(int a, int b)
{
if (a == 1)
b = 0;
if (a <= 100){
b += a++;
main(a, b);
}
else if (a > 100)
printf("%d\n", b);
return 0;
}
존나 잘됨 ㅋㅋ
I'm your little butterfly. Green, black and blue make the colors in the sky!
저게 되는구나
1에서 100까지더하는거?
ㅇㅇ
주소를 참조안하는데, 결과값이 더해져서 나옴?
ㄴ 뭔소리야