백준 BOJ C# 1008

2020. 1. 8. 20:27백준 알고리즘 단계별/입출력과 사칙연산

반응형

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

 

1008번: A/B

두 정수 A와 B를 입력받은 다음, A/B를 출력하는 프로그램을 작성하시오.

www.acmicpc.net

 

코드

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
using System;
 
namespace baekjoon
{
    class Program
    {
        static void Main(string[] args)
        {
            string input = Console.ReadLine();
            string[] arr_input = input.Split();
 
            Console.WriteLine(double.Parse(arr_input[0]) / double.Parse(arr_input[1]));
        }
    }
}

* 소수 9번째 자리까지 표시하기 위해서 double 형으로 바꿔줬다.

반응형