출제 링크 : https://www.acmicpc.net/problem/2588
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace _20200604_BackJoon
{
class Program
{
static void Main(string[] args)
{
int N1 = int.Parse(Console.ReadLine());
int N2 = int.Parse(Console.ReadLine());
int N3 = N1*(N2%10);
int N4 = N1 *(((N2%100)-(N2 % 10))/10);
int N5 = N1 *(((N2 % 1000) - (N2 % 100)) / 100);
int Sum;
Console.WriteLine(N3);
Console.WriteLine(N4);
Console.WriteLine(N5);
Sum = (N5 * 100) + (N4 * 10) + (N3 * 1);
Console.WriteLine(Sum);
}
}
}
'Baekjoon 문제풀이' 카테고리의 다른 글
[Baekjoon 2단계(2)] 9498번 : 시험 성적 (0) | 2021.08.31 |
---|---|
[Baekjoon 2단계(1)] 1330번 : 두 수 비교하기 (0) | 2021.08.31 |
[Baekjoon 1단계(10)] 10430번 : 나머지 (0) | 2021.08.31 |
[Baekjoon 1단계(9)] 10869번 : 사칙연산 (0) | 2021.08.31 |
[Baekjoon 1단계(8)] 1008번 : A/B (0) | 2021.08.31 |