C/백준

[C언어] 백준 2588번 곱셈

vss121 2021. 7. 13. 21:12
#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>

int main()
{
	int a, b;
	scanf("%d %d", &a, &b);
	printf("%d\n%d\n%d\n%d", a*(b%10), a*((b%100)/10), a*(b/100), a*b);
}

'C > 백준' 카테고리의 다른 글

[C언어] 백준 2577번 - 숫자의 개수  (0) 2021.10.20
[C언어] 백준 9498번 시험성적  (0) 2021.07.20
[C언어] 백준 10430번 나머지  (0) 2021.07.01
[C언어] 백준 1008번 A/B  (0) 2021.07.01
[C언어] 백준 1000번 A+B  (0) 2021.07.01