BOJ 2588 곱셈

Jmnote (토론 | 기여)님의 2023년 8월 23일 (수) 02:23 판 (새 문서: ==개요== ;BOJ 2588 곱셈 * {{BOJ|2588}} * {{BOJ단계|1}} ==C== <syntaxhighlight lang='c'> #include <stdio.h> int main() { long a, b; scanf("%d %d", &a, &b); int b100 =...)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

1 개요

BOJ 2588 곱셈
BOJ 2588 곱셈

[[분류:BOJ {{{단계}}}단계]]

2 C

#include <stdio.h>
int main() {
	long a, b;
	scanf("%d %d", &a, &b);
    
    int b100 = b/100;
    int b10 = (b%100)/10;
    int b1 = b % 10;
    
    printf("%d\n", a*b1);
    printf("%d\n", a*b10);
    printf("%d\n", a*b100);
    printf("%d\n", a*b);
	return 0;
}
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}