Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Semrush - keyword research tool

Turn ChatGPT, Claude, Gemini, And CoPilot Into Your Personal Assistant, Business Coach, Content Creator, And More

AFFILIATE MARKETING Your all-in-one performance engine Manage affiliates, creators, and customer referrals in one unified platform—turning every partnership into measurable growth
Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

42,690 questions

55,449 answers

573 users

How to create a two-dimensional (2D) array in Perl

2 Answers

0 votes
use warnings;

my @array = ();
foreach my $i ( 0 .. 3 ) {
  foreach my $j ( 0 .. 4 ) {
    push @{ $array[$i] }, $j;
  }
}

foreach my $i ( 0 .. 3 ) {
  foreach my $j ( 0 .. 4 ) {
    print $array[$i][$j], ' ';
  }
  print "\n";
}



## run:
##
## 0 1 2 3 4 
## 0 1 2 3 4 
## 0 1 2 3 4 
## 0 1 2 3 4 
##

 



answered Mar 22, 2025 by avibootz
0 votes
use warnings;

my @array = ();
foreach my $i ( 0 .. 3 ) {
  foreach my $j ( 0 .. 4 ) {
    $array[$i][$j] = $i * $j;
  }
}

foreach my $i ( 0 .. 3 ) {
  foreach my $j ( 0 .. 4 ) {
    printf "%3d", $array[$i][$j];
  }
  print "\n";
}



## run:
##
##  0  0  0  0  0
##  0  1  2  3  4
##  0  2  4  6  8
##  0  3  6  9 12
##

 



answered Mar 22, 2025 by avibootz

Related questions

2 answers 206 views
206 views asked Dec 15, 2022 by avibootz
1 answer 200 views
3 answers 296 views
296 views asked May 20, 2025 by avibootz
1 answer 185 views
185 views asked May 19, 2025 by avibootz
...