top of page

소스 코드 제출

공개·회원 50명

2025-07-20 오후11시

/*#include <stdio.h>

int main()

{

int a,b;

scanf("%d %d",&a,&b);

printf("%d",a%b);

return 0;

}

*/

/*#include <stdio.h>

int main()

{

int a,b;

scanf("%d %d", &a,&b);

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

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

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

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

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

printf("%.2f", (float)a/b);

return 0;

}

*/

/*#include <stdio.h>

int main()

{

int a,b,c;

scanf("%d %d %d", &a,&b,&c);

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

printf("%.1f", (a+b+c)/3.0);

return 0;

}

*/

/*#include <stdio.h>

int main()

{

int a;

scanf("%d",&a);

printf("%d", a*24);

return 0;

}

*/

#include <stdio.h>

int main()

{

int a,b;

scanf("%d %d",&a,&b);

printf("%d",a%b);

return 0;

}

4회 조회
주소 : 경기도 용인시 광교중앙로 302 블루 스퀘어 602호
연락처 : 031) 216 - 1546 ,     031) 215 - 1546
사업자등록번호 : 465-92-00916
​학원 등록 제 4603호
bottom of page