-
Notifications
You must be signed in to change notification settings - Fork 2
/
conditional.cpp
86 lines (70 loc) · 1.15 KB
/
conditional.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
#include<iostream>
using namespace std;
int main(){
// int a;
// cin>>a;
// if(a>0){
// cout<<"A is positive"<<endl;
// }else{
// cout<<"A is non-positive"<<endl;
// }
// int a,b;
// cout<<"Enter the value of a:" << endl;
// cin>>a;
// cout<<"Enter the value of b:" << endl;
// cin>>b;
// if(a>b){
// cout<< "A is greater!!" << endl;
// }
// if(b>a){
// cout<< "B is greater!!" << endl;
// }
// int a;
// cout<< "Enter the value of a: "<<endl;
// cin>>a;
// if(a>0){
// cout<<"A is positive"<<endl;
// }else{
// if (a<0)
// {
// cout<< "A is negative" <<endl;
// }
// else
// {
// cout<< "A is 0"<<endl;
// }
// }
// int a =2;
// int b =a+1;
// if((a=3)==b){
// cout <<a;
// }else
// {
// cout<<a+1;
// }
// int a=24;
// if(a>20){
// cout<<"Love";
// }
// else if(a==24){
// cout<<"Lovely";
// }
// else{
// cout<<"aman";
// }
// cout<<a;
char ch;
cout<<"Enter the value of character: "<<endl;
cin>>ch;
if(ch>='a' && ch<='z'){
cout<<"This is Lowercase";
}
else if (ch>='A'&& ch<='Z')
{
cout<<"This is Uppercase";
}
else if (ch>='0' && ch<='9')
{
cout<<"This is numeric";
}
}