AppleTree iOS

내가 입력한 숫자끼리 더하는 것! 본문

C 언어

내가 입력한 숫자끼리 더하는 것!

사과나무 2010. 4. 19. 18:13
#include<stdio.h>//이것은 항상 꼭 써야함 ㅋ
int main()//여기에는 ;을 붙이면 안된다.
{
 int a;
 int b;
 scanf("%d",&a);
 scanf("%d",&b);
 printf("%d\n",a+b);
 return 0;
}

Comments