AHPA #24: Game Club * * You really enjoy playing the online game "PUBG: Battlegrounds". You  * have decided to create a student club of other people who like to play  * it. * * Your program will need a structure to keep track of players. It will  * need to hold a student's name, their "game name", age, and current  * level of play (an integer). * * You have been given player data in string form. Use Rust slices to  * process the string and load a vector of the structure with the player  * info. * * Print each of the loaded structures out using the "{:?}" command. *  *     Bob Johnson:Master Sargent:21:7 *  Rebecca Hold:Slay:19:4 *  John Majors:Murader:20:6 *  Ann Jenkens:Force:22:9 * * Student Name: * */ fn main() {    let player1 = String::from("Bob Johnson:Master Sargent:21:7");    let player2 = String::from("Rebecca Hold:Slay:19:4");    let player3 = String::from("John Majors:Murader:20:6");    let player4 = String::from("Ann Jenkens:Force:22:9"); }

icon
Related questions
Question

AHPA #24: Game Club
 *
 * You really enjoy playing the online game "PUBG: Battlegrounds". You 
 * have decided to create a student club of other people who like to play 
 * it.
 *
 * Your program will need a structure to keep track of players. It will 
 * need to hold a student's name, their "game name", age, and current 
 * level of play (an integer).
 *
 * You have been given player data in string form. Use Rust slices to 
 * process the string and load a vector of the structure with the player 
 * info.
 *
 * Print each of the loaded structures out using the "{:?}" command.
 * 
 *     Bob Johnson:Master Sargent:21:7
 *  Rebecca Hold:Slay:19:4
 *  John Majors:Murader:20:6
 *  Ann Jenkens:Force:22:9
 *
 * Student Name:
 *
 */


fn main() {
    let player1 = String::from("Bob Johnson:Master Sargent:21:7");
    let player2 = String::from("Rebecca Hold:Slay:19:4");
    let player3 = String::from("John Majors:Murader:20:6");
    let player4 = String::from("Ann Jenkens:Force:22:9");

}

AI-Generated Solution
AI-generated content may present inaccurate or offensive content that does not represent bartleby’s views.
steps

Unlock instant AI solutions

Tap the button
to generate a solution