Mistake in code

my test cases are not passing with this code
#include
using namespace std;
int main() {
char x;
cin>>x;
if(isupper(x))
cout<<“uppercase”;
else if(islower(x))
cout<<“lowercase”;
else
cout<<“inavalid”;
return 0;
}

@ctarun314_5830ac48ebc3bfd4 hiii check this

@ctarun314_5830ac48ebc3bfd4 In your code you do not write proper style which is in cout as question actually wants
like uppercase wirte as UPPERCASE invalid spelling is wrong

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.