Notice
Recent Posts
Recent Comments
Link
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | ||||
| 4 | 5 | 6 | 7 | 8 | 9 | 10 |
| 11 | 12 | 13 | 14 | 15 | 16 | 17 |
| 18 | 19 | 20 | 21 | 22 | 23 | 24 |
| 25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 파이썬
- W3Schools
- Programming
- String
- 문제풀이
- Class
- guide
- 시작해요 언리얼 2022
- 기초
- 백준
- 프로그래밍
- Basic
- DP
- Unreal Engine 5
- c++
- parameter
- loop
- UE5
- Algorithm
- Material
- C#
- python
- Tutorial
- 재귀
- dynamic
- dfs
- Unity
- 오류
- w3school
- github
Archives
- Today
- Total
목록1008 (1)
행복한 개구리
Python A, B = map(float, input().split()) print(A/B) Python은 float형식만으로도 소숫점 아래 9자리 이상 표현되므로 float을 사용합니다. C# string[] input = Console.ReadLine().Split(); Console.WriteLine(double.Parse(input[0]) / double.Parse(input[1])); 오차를 줄이기 위해 float 대신 double을 사용합니다. string으로 받아온 값을 형변환하기 위해 int.Parse 를 이용합니다. C++ #include using namespace std; int main() { double a, b; cin >> a >> b; cout.precision(12); c..
Algorithm/BaekJoon
2022. 7. 8. 17:15