#include <stdio.h>
int Add (int i, int j)
{
int result=i+j;
return result;
}
int main(void)
{
int a,b;
int output;
scanf(\"%d,%d\",&a,&b);
printf(\"%d\",Add(a,b));
return 0;
}
두수 입력받아 더해주는건데 흠....이상하네
좀 알려주세여 ㅠㅠ
#include <stdio.h>
int Add (int i, int j)
{
int result=i+j;
return result;
}
int main(void)
{
int a,b;
int output;
scanf(\"%d,%d\",&a,&b);
printf(\"%d\",Add(a,b));
return 0;
}
두수 입력받아 더해주는건데 흠....이상하네
좀 알려주세여 ㅠㅠ
,
scanf(\"%d %d\", &a, &b);
우우와......아 저기엔 쉼표 들어가면 안돼???????? 오호라~
scanf %d 사이에 콤마 빼고 스페이스바로해바여 근데틀리면 ㅂㅅ인증인데 난굴복하지않겠어 [허큭허극]
학.. 늦었네 [허큭허극]
ㄴ 암튼 고마워