Rust program to demonstrate the if let with else if statement

Rust | if let with else if statement example: Write an example to compare STD codes and print the corresponding city names using if let with else if statement.
Submitted by Nidhi, on October 07, 2021

Problem Solution:

In this program, we will use the else if statement with if let to compare std codes and print the corresponding name of the city.

Program/Source Code:

The source code to demonstrate the if let with else if statement is given below. The given program is compiled and executed successfully.

// Rust program to demonstrate the 
// example of if let with else if statements

fn main() 
{
    let stdCode: i32 = 121;
    
    let result = if let 011 = stdCode{
        "Delhi"
    }
    else if 120==stdCode{
        "GHAZIABAD"
    }
    else if 121==stdCode{
        "Meerut"
    }
    else{
        "Unknown"
    };
    
    println!("{}",result);
}

Output:

Meerut

Explanation:

Here, we created a variable stdCode of i32 type with the initial value of 121. Then we compared the value of stdCode using the if let statement with else if statement and return the name of the corresponding city and printed the result.

Rust if/else Programs »





Comments and Discussions!

Load comments ↻





Copyright © 2024 www.includehelp.com. All rights reserved.