Showing posts with label bas. Show all posts
Showing posts with label bas. Show all posts

Saturday, September 21, 2019

প্রোগ্রামিং সমস্যা 1 - [৫২ সমস্যা বই] জোড়-বিজোড়-১

 
 
#include< iostream >
using namespace std;
int main() {
int tc, num;
cin >> tc;
while(tc--){
cin >> num;
cout << ((num&1)?"odd":"even") << endl;
}
return 0;
}