fork download
  1. /* 11.23 Jum'at, 27 Sep 2024 oleh Fauzana S
  2. ---
  3.   program contoh bentuk-bentuk matriks, larik, atau array
  4. **/
  5.  
  6. #include <stdio.h>
  7.  
  8. int main(void) {
  9. // input: pencacah
  10. int n;
  11. // input: ordo, baris, atau kolom
  12. scanf("%d",&n);
  13. // jumlah elemen-elemen
  14. int total = n * n;
  15. // output: kubus •
  16. n = 1;
  17. while(n <= total) {
  18. //printf("• ");
  19. printf(" %d ",&n);
  20. if(n % total == 0)
  21. puts(" ");
  22. n += 1;
  23. }
  24. return 0;
  25. }
  26.  
Success #stdin #stdout 0.01s 5284KB
stdin
3
stdout
 -853114396  -853114396  -853114396  -853114396  -853114396  -853114396  -853114396  -853114396  -853114396