Odpowiedź:
#include<iostream>
using namespace std;
int tab[3][4];
int a[12];
int main()
{
a[1]=1;
a[2]=2;
int n=3;
for(int i=0;i<3;i++)
for (int j=0;j<4;j++)
if(i==0&&j==0)
tab[i][j]=a[1];
else if(i==0&&j==1)
tab[i][j]=a[2];
else
tab[i][j]=a[n-1]-2*n + a[n-2];
n++;
}
cout<<tab[i][j]<<" ";
cout<<endl;
return 0;
Wyjaśnienie:
Dość dziwne wyniki wychodzą, ale chyba działa.
dawno programów nie robiłem więc można było zrobić to krócej ;)
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
Odpowiedź:
#include<iostream>
using namespace std;
int tab[3][4];
int a[12];
int main()
{
a[1]=1;
a[2]=2;
int n=3;
for(int i=0;i<3;i++)
{
for (int j=0;j<4;j++)
{
if(i==0&&j==0)
tab[i][j]=a[1];
else if(i==0&&j==1)
tab[i][j]=a[2];
else
{
tab[i][j]=a[n-1]-2*n + a[n-2];
n++;
}
}
}
for(int i=0;i<3;i++)
{
for (int j=0;j<4;j++)
{
cout<<tab[i][j]<<" ";
}
cout<<endl;
}
return 0;
}
Wyjaśnienie:
Dość dziwne wyniki wychodzą, ale chyba działa.
dawno programów nie robiłem więc można było zrobić to krócej ;)