2+2=4
This commit is contained in:
parent
72ce766c50
commit
f59d179acc
1 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue