Zadaca br8

1Zadaca br8
2
3#include <iostream>
4using namespace std;
5
6int main ( ) {
7 int n;
8
9 cout <<"Vnesi eden broj" ;
10 cin >> n;
11
12 if ( n % 2 ==0)
13 cout << n << "Paren" ;
14 else
15 cout << n << "Neparen" ;
16
17 return 0;
18 }

Popular posts from this blog

Zadaca br11

Zadaca br1