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"); }
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
* 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
* 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");
}
Trending now
This is a popular solution!
Step by step
Solved in 4 steps with 1 images