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
- webhacking.kr
- 예전글 #CNN
- Crypto
- 백준
- Pwnable.kr
- web
- SQLi
- cookie
- Bob
- PS
- XSS
- pwn.college
- regex
- blind-sqli
- blind_sqli
- cce2023
- 예전글
- cryptohack.org
- pwn
- pwnable
- SECGAME
- JS
- 예전글 #PS
- HTB
Archives
- Today
- Total
아모에요
[BOJ/백준][Rust] 1008 A/B 본문
f32로 제출하면 오차범위에 의해서 틀렸다고 채점된다.
1
2
3
4
5
6
7
8
9
10
|
use std::io;
fn main(){
let mut s = String::new();
io::stdin().read_line(&mut s).unwrap();
let li: Vec<&str> = s.split_whitespace().collect();
let a = li[0].parse::<f64>().unwrap();
let b = li[1].parse::<f64>().unwrap();
println!("{}",a/b)
}
|
cs |
'Study > PS' 카테고리의 다른 글
[BOJ/백준][Rust] 1001 A-B (0) | 2023.06.18 |
---|---|
[BOJ/백준][Rust] 1000 A+B (0) | 2023.06.18 |
[BOJ/백준] 1956 - 운동 (0) | 2023.06.11 |