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"); }

EBK JAVA PROGRAMMING
8th Edition
ISBN:9781305480537
Author:FARRELL
Publisher:FARRELL
Chapter2: Using Data
Section: Chapter Questions
Problem 12PE
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");

}

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps with 1 images

Blurred answer
Knowledge Booster
Program on Numbers
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781305480537
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT