백준 온라인 저지 / 1008번 A/B
https://www.acmicpc.net/problem/1008
사용언어 : C#(.NET)
알고리즘 : 구현,사칙연산
□ 문제 정리
두 정수를 입력받아 a / b 를 출력
□코드 작성(해답지)
using System;
using System.Collections.Generic;
using System.Linq;
namespace boj
{
class Program
{
static void Main(string[] args)
{
string[] s = Console.ReadLine().Split();
Console.WriteLine(double.Parse(s[0]) / double.Parse(s[1]));
}
}
}