Skip to content
 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 

Repository files navigation

Two-Dimensional Array

Objective

The project's main focus is understanding two-dimensional arrays, declaring them, accessing their elements using indexes, and performing operations on them.

Problem

Create a 2D array called values with 2x3 dimensions of type float.

Implementation

  • Create an array of values with 2x3 dimensions.
  • Initialize the array with default values (0.0 for each element).
  • Print the number of rows and columns using the length attribute.
  • Print the array.
  • Choose and update a value in the array.
  • Print the array after updating it.
public class Main {
    public static void main(String[] args) {
      /* add your code here */
    }

}

About

No description, website, or topics provided.

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages