Facebook
From Colossal Panda, 6 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 217
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main(){
  5.         char s;
  6.         cin>>s;
  7.         if (s == 'a' || s == 'e' || s == 'i' || s == 'o' || s == 'u' || s == 'y'){
  8.                 cout<<"tak";
  9.         }
  10.                 else{
  11.                         cout<<"nie";
  12.                 }
  13.         return 0;
  14. }