Skip to content

ironhack-labs/lab-java-enum-hash-maps-openbank-2025

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 

Repository files navigation

logo_ironhack_blue 7

LAB Java | Enums & HashMaps

Introduction

We have just learned how to use Enums and HashMaps so let's practice a bit more.


Requirements

  1. Fork this repo.
  2. Clone this repo.
  3. Add your instructor and the class graders as collaborators to your repository. If you are unsure who your class graders are, ask your instructor or refer to the day 1 slide deck.
  4. In the repository, create a Java project and add the code for the following prompts.

Submission

Once you finish the assignment, submit a URL link to your repository or your pull request in the field below.


Instructions

  1. Create a new Java project in your preferred development environment.
  2. In the project, create a class called Student that contains the following properties:
    • name: String
    • grade: int (in the range 0-100)
  3. Create a Map with a key of the student's name (String) and a value of a Student object.
  4. Create a method called increaseGrades that takes a Map<String, Student> as a parameter, increases every student's grade by 10% and returns the updated map.
  5. Create 4 Student objects for your classmates and add them to the Map.

FAQs


I am stuck and don't know how to solve the problem or where to start. What should I do?


If you are stuck in your code and don't know how to solve the problem or where to start, you should take a step back and try to form a clear, straight forward question about the specific issue you are facing. The process you will go through while trying to define this question, will help you narrow down the problem and come up with potential solutions.

For example, are you facing a problem because you don't understand the concept or are you receiving an error message that you don't know how to fix? It is usually helpful to try to state the problem as clearly as possible, including any error messages you are receiving. This can help you communicate the issue to others and potentially get help from classmates or online resources.

Once you have a clear understanding of the problem, you should be able to start working toward the solution.



How do I create a Maven project in IntelliJ?


To create a Maven project in IntelliJ, you can follow these steps:

  1. Open IntelliJ IDEA and click the "Create New Project" button.
  2. In the "New Project" dialog, select "Maven" as the build system.
  3. Specify the name of the project.
  4. In the "Project Location" section, specify a location where you want to save your project.
  5. Select the "Create Git repository" checkbox in order to initialize the git repository upon creation of the project.
  6. Click the "Create" button to create the Maven project.


How do I use "HashMaps" in Java and how can I print them?


A HashMap in Java is a data structure that stores key-value pairs. It is implemented as an unordered map, meaning that the order of the elements may change over time.

Here's an example of how you can create and use a HashMap in Java:

import java.util.HashMap;

public class Main {
    public static void main(String[] args) {
        HashMap<String, Integer> map = new HashMap<>();
        map.put("Key 1", 1);
        map.put("Key 2", 2);
        map.put("Key 3", 3);

        System.out.println("Value of Key 1: " + map.get("Key 1"));
        System.out.println("Value of Key 2: " + map.get("Key 2"));
        System.out.println("Value of Key 3: " + map.get("Key 3"));
    }
}

In the example above, we first create a HashMap map that stores String keys and Integer values. We then use the put method to add three key-value pairs to the map. Finally, we use the get method to retrieve and print the values associated with each key.

To print the entire HashMap, you can use a forEach loop:

map.forEach((key, value) -> System.out.println("Key: " + key + ", Value: " + value));

In this example, the forEach loop iterates over each key-value pair in the HashMap and prints the key and value.



I am unable to push changes to my repository. What should I do?


If you are unable to push changes to your repository, here are a few steps that you can follow:

  1. Check your internet connection: Ensure that your internet connection is stable and working.
  2. Verify your repository URL: Make sure that you are using the correct repository URL to push your changes.
  3. Check Git credentials: Ensure that your Git credentials are up-to-date and correct. You can check your credentials using the following command:
git config --list
  1. Update your local repository: Before pushing changes, make sure that your local repository is up-to-date with the remote repository. You can update your local repository using the following command:
git fetch origin
  1. Check for conflicts: If there are any conflicts between your local repository and the remote repository, resolve them before pushing changes.
  2. Push changes: Once you have resolved any conflicts and updated your local repository, you can try pushing changes again using the following command:
git push origin <branch_name>

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published