Skip to content

Commit 345cc3f

Browse files
authored
espaço adicionado entre os resultados na saída
1 parent 0018b42 commit 345cc3f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Fibonacci.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ fn main(){
22
let root = 5_f32.sqrt();
33
let phi = (1.0 + root) / 2.0;
44
for n in 0..16 {
5-
print!("{}", (phi.powi(n) / root).round());
5+
print!("{} ", (phi.powi(n) / root).round());
66
}
77
}

0 commit comments

Comments
 (0)