C++ (klasa II LO - funkcje )
Napisz program wypisujący wszystkie liczby z przedziału od 100 do 500,których pierwsza i ostania były takie same... np: 101,202,252,
" 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>
using namespace std;
int main()
{
int tab1[5]={1,2,3,4,5};
int tab2[10]={0,1,2,3,4,5,6,7,8,9};
for (int i=0;i<4;i++)
{
for (int j=0;j<10;j++)
{
cout<<tab1[i]<<tab2[j]<<tab1[i]<<endl;
}
}
cin.ignore();
getchar();
return 0;
}