Odpowiedź:
#include <iostream>
using namespace std;
const int N = 5;
int a[N],i;
void Tabela()
{
for (i = 0; i < N; i++)
cout<< "Podaj liczbę nr " << i+1 << ": ";
cin >> a[i];
}}
void Drukowanie()
for(i=0;i<N;i++)
cout<<a[i]<<" ";
}
int main(){
Tabela();
Drukowanie();
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2025 KUDO.TIPS - All rights reserved.
Odpowiedź:
#include <iostream>
using namespace std;
const int N = 5;
int a[N],i;
void Tabela()
{
for (i = 0; i < N; i++)
{
cout<< "Podaj liczbę nr " << i+1 << ": ";
cin >> a[i];
}}
void Drukowanie()
{
for(i=0;i<N;i++)
cout<<a[i]<<" ";
}
int main(){
Tabela();
Drukowanie();
}