Advertisement
fr1sk

zadatak1

Dec 21st, 2015
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.24 KB | None | 0 0
  1. #include<stdio.h>
  2. #include<ctype.h>
  3.  
  4. int main(){
  5.   char c;
  6.  
  7.   while((c=getchar())!=EOF)
  8.   {
  9.     if(isupper(c))  //A
  10.       c=tolower(c); //a
  11.  
  12.     else if(islower(c))
  13.       c=toupper(c);
  14.  
  15.     printf("%c\n",c );
  16.   }
  17.   return 0;
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement