백준 BOJ C# 1008
2020. 1. 8. 20:27ㆍ백준 알고리즘 단계별/입출력과 사칙연산
반응형
출제 링크 : https://www.acmicpc.net/problem/1008
코드
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();
Console.WriteLine(double.Parse(arr_input[0]) / double.Parse(arr_input[1]));
}
}
}
|
* 소수 9번째 자리까지 표시하기 위해서 double 형으로 바꿔줬다.
반응형