본문으로 바로가기

[Baekjoon 1단계(11)] 2588번 : 곱셈

category Baekjoon 문제풀이 2021. 8. 31. 13:17

출제 링크 : https://www.acmicpc.net/problem/2588

 

2588번: 곱셈

첫째 줄부터 넷째 줄까지 차례대로 (3), (4), (5), (6)에 들어갈 값을 출력한다.

www.acmicpc.net

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);

        }
    }
}