CLS INPUT "n=", n 'b(n,n) carpim tablosunu olusturmak icin tanmlanan matris DIM b(n, n) 'carpim tablosunun olusturulmasi FOR i = 1 TO n FOR j = 1 TO n b(i, j) = i * j NEXT j, i ' herbir satirin toplanmasi FOR i = 1 TO n FOR j = 1 TO n dizi(i) = dizi(i) + b(i, j) NEXT j, i 'carpim tablosunun yazdirilmasi FOR i = 1 TO n FOR j = 1 TO n PRINT b(i, j); NEXT j PRINT NEXT i