" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
using namespace std;
int main()
{
int t[5];
for (int i=0; i<5; i++)
t[i] = i;
for (int i=0; i<5; i++)
if (t[i] > 3 && t[i] % 2 == 0)
cout << t[i] << " ";
}