summaryrefslogtreecommitdiff
path: root/tests/exec/for3.cpp
blob: 3df619c902a98adeaacde051fe3567910e180dc5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#include <iostream>

int main() {
  int i;
  int j;
  for (i = 0; i < 5; i++)
    for (j = 0; j < 5; j++)
      std::cout << "i*j = " << i*j << "\n";
  std::cout << "i = " << i << "\n";
  std::cout << "j = " << j << "\n";
}