Mastura Azzura Matriks 3x3 pendek ~ Dunia Elektro

Monday, May 6, 2013

Matriks 3x3 pendek

Posted by Aim on 1:20 PM with No comments
Matriks 3x3
Rumus:


#include <iostream>
using namespace std;
int matrix[3][3];
int main()
{
    // asigning values, I suppose this is done allready.

    for(int x=0;x<3;x++)
    {
        for(int y=0;y<3;y++)
        {
            matrix[x][y]=1;
        }
    }

    // showing the matrix on the screen

    for(int x=0;x<3;x++)  // loop 3 times for three lines
    {
        for(int y=0;y<3;y++)  // loop for the three elements on the line
        {
            cout<<matrix[x][y];  // display the current element out of the array
        }
    cout<<endl;  // when the inner loop is done, go to a new line
    }
    return 0;  // return 0 to the OS.
}

Post a Comment

Jika ingin berkomentar, silahkan menggunakan kata-kata yang baku, berkomentarlah sesuai dengan tema yang dibahas. Dilarang untuk promosi dalam bentuk apapun, memaki atau hanya sekedar spam.

Terima Kasih Jika Anda bersedia mematuhi aturan dari admin..
Selamat menikmati..