Napisz tablice 2 wymiarową w której będą wyświetlane kolejne parzyste liczby z liczby od 0 do 100 (w postaci Macierzy) Programowanie w C++ Prosze o szybkie rozwiązanie potrzeba na środe!!!
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
#include<iostream>
#include<cstdio>
#include<iomanip>
using namespace std;
int main()
{
int tab[7][8];
int s=0;
for (int i=0; i<7; i++)
{
for (int j=0; j<8; j++)
{
tab[i][j]=s;
cout<< "tab["<<i<<"]["<<j<<"]="<<tab[i][j]<<endl;
if (s!=100)
s+=2;
else
break;
}
if (s!=100)
continue;
else
break;
}
cin.ignore();
getchar();
return 0;
}