控制流 / 条件语句 / if/else 语句

let a = 3;
let b = 5;
let c = 7;
if c >= a && c >= b {
    println!("Nothing is larger than C.");
}
if !(a >= b || a >= c) {
    println!("A is the smallest.");
}