two test cases is not work, can you plz tell me
#include
using namespace std;
int main()
{
char ch;
cin>>ch;
if(islower(ch))
{
cout<<“L”;
}
else if(isupper(ch))
{
cout<<“U”;
}
else
{
cout<<“i”;
}
}
two test cases is not work, can you plz tell me
#include
using namespace std;
int main()
{
char ch;
cin>>ch;
if(islower(ch))
{
cout<<“L”;
}
else if(isupper(ch))
{
cout<<“U”;
}
else
{
cout<<“i”;
}
}