Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //#include <stdio.h>
- //#include <stdlib.h>
- #include <iostream>
- //#include <string.h>
- using namespace std;
- int main() {
- // Se ok minusculo exibe or se ok Maiusculo Exibe !
- char a = 'a';
- char b = 'A';
- if(islower(a)){
- cout<<"E Minusculo"<<endl;
- }
- if(toupper(b)){
- cout<<"E Maiusculo"<<endl;
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement