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

Create your online store today with Shopify

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

Disclosure: My content contains affiliate links.

43,227 questions

56,129 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 228 views
228 views asked Dec 15, 2022 by avibootz
1 answer 219 views
3 answers 333 views
333 views asked May 20, 2025 by avibootz
1 answer 212 views
212 views asked May 19, 2025 by avibootz
...