diff --git a/src/main.rs b/src/main.rs index 3bec46c..5aae356 100644 --- a/src/main.rs +++ b/src/main.rs @@ -38,10 +38,10 @@ fn main() { thebestx = (-b + (b.powf(2.0f32) - 4.0f32 * a * c).sqrt())/(2.0f32 * a); thebestx2 = (-b - (b.powf(2.0f32) - 4.0f32 * a * c).sqrt())/(2.0f32 * a); - println!("x+={0} x-={1} a={2} b={3} c={4}", thebestx, thebestx2, a, b ,c) - + println!("x+={0} x-={1} a={2} b={3} c={4}", thebestx, thebestx2, a, b ,c); + println!("2+2={0}", 2+2)