작성일 :

문제 링크

1008번 - A/B

설명

기본적인 사칙 연산 문제입니다.


Code

[ C# ]

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
namespace Solution {
  class Program {
    static void Main(string[] args) {

      var input = Console.ReadLine()!.Split(' ');
      var a = int.Parse(input![0]);
      var b = int.Parse(input![1]);

      double ans = (double)a / b;

      Console.WriteLine($"{ans:F9}");

    }
  }
}



[ C++ ]

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <bits/stdc++.h>

using namespace std;

int main() {
  ios::sync_with_stdio(false);
  cin.tie(nullptr);

  int a, b; cin >> a >> b;

  double ans = (double)a / b;

  cout.setf(ios::fixed); cout.precision(9);
  cout << ans << "\n";

  return 0;
}