potrzebuje na jutro napisany program w C++ ma być w nim tablica 2 wymiarowa 4 elementowa program może być jak najprostrzy byle zawierał taką tablice Pilne bo na jutro
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
#include <iostream>
using namespace std;
int tab[2][4];
int main(){
for(int j=0;j<2;j++){
for(int i=0;i<4;i++){
cin >> tab[j][i];
}
}
cout << "Do komorek tabeli wpisales nastepujace liczby!" << endl;
for(int j=0;j<2;j++){
for(int i=0;i<4;i++){
cout << tab[j][i] << " ";
}
cout << endl;
}
system("pause");
return 0;
}
#include <iostream>
using namespace std;
int main()
{
int tab[2][2];
// WYPELNIENIE
for (int i=0; i<2; i++)
for (int j=0; j<2; j++)
tab[i][j]=(i*j)+2;
cout << "Tablica po wypelnieniu\n";
// WYSWIETLENIE
for (int i=0; i<2; i++)
{
for (int j=0; j<2; j++)
cout << tab[i][j] << " ";
cout << "\n";
}
// PROSTA MODYFIKACJA ELEMENTOW TABLICY
for (int i=0; i<2; i++)
for (int j=0; j<2; j++)
tab[i][j]+=i+j+1;
// WYSWIETLENIE
cout << "\nTablica po modyfikacji\n";
for (int i=0; i<2; i++)
{
for (int j=0; j<2; j++)
cout << tab[i][j] << " ";
cout << "\n";
}
return 0;
}