Skip to content
Snippets Groups Projects
Select Git revision
  • f82db55e55a29f63e5d3395a97c7dc0a7811c143
  • 2025ss default
  • 2024ss
  • 2023ws
  • 2022ws
  • 2021ws
  • 2020ws
  • 2019ws
  • 2019ss
  • 2018ws
  • 2017ws
  • 2017ss
  • 2016ws
  • 2016ss
  • 2015ss
15 results

loesung-1.2-03.c

  • loesung-1.2-03.c 191 B
    #include <stdio.h>
    
    int main (void)
    {
      for (int i = 1; i <= 10; i++)
        {
          for (int j = 1; j <= 10; j++)
    	{
    	  printf ("%2d * %2d =%3d \n", j, i, j * i);
            }
        }
      return 0;
    }