[백준] 1075번 : 나누기 - C#

강재원·2022년 10월 6일
0

[코딩테스트] C#

목록 보기
104/200



https://www.acmicpc.net/problem/1075

using System;

class Program
{
    static void Main(string[] args) {
        string s=Console.ReadLine();
        string s1=Console.ReadLine();
        int n=int.Parse(s);
        int f=int.Parse(s1);
        int a=n%100;
        int b=n-a;
        int c=b%f;
        if(c==0) Console.Write("00");
        else Console.Write("{0:D2}",(f-c)%100);
    }
}
profile
개념정리 & 문법 정리 & 알고리즘 공부

0개의 댓글