Help for this page

Select Code to Download


  1. or download this
    for i := 1 to n
    do begin
    ...
      ('The first all-zero row is ', i );
        break;
    reject: end;
    
  2. or download this
    #/usr/bin/env perl
    
    ...
        say "First matrix row to contain all zeros is $row,",
            " using $technique approach.";
    }