C++ Dizi Örnekleri-6

Konu sahibi son olarak 3307 gün önce görüldü
Kod:
#include <iostream>
using namespace std;
int main(){
 const int st=4 , su=5;
int b[st][su]={{1,2,3,4,5},
                {6,7,8,9,10},
                {11,12,13,14,15},
                {16,17,18,19,20}};
    for(int k=0;k<st;k++)
    {
        for (int j=0;j<su;j++)
        {cout<<b[k][j]<<"\t";}
        cout<<"\n";
    }
 return 13;
}
 
Geri