Quick actions

cmd+k|ctrl+k

Navigation

Languages

/* Perulangan Bersarang */

Snippet info

Language

Cpp

Visibility

public

Author

afton7127

Created

2023-05-28T03:37:47.340124Z

Updated

2023-05-28T03:37:47.340124Z

/* Perulangan Bersarang */
#include <stdio.h>

int main(void)
{
    for (int i = 1; i <= 5; i++) {
      for (int j = 1; j <= 5; j++) {
        printf("%i * %i = %i\n",i,j,j*i) ;
      }
      printf("\n") ;
    }
    return 0;
}
INFO