Content deleted Content added
Line 105:
<syntaxhighlight lang="Rust" line>
use std::{io, iter
fn f(t: f64) -> Option<f64> {
Line 114:
fn main() {
let mut a = [0f64; 11];
for (t, input) in iter::zip(&mut a, io::stdin().lines()) {
*t = input.unwrap().parse().unwrap();
}
|