update code

This commit is contained in:
ShazidMahsrafi 2023-06-11 13:38:15 +06:00
parent 40f135fddb
commit 5aaeeeeb51

View File

@ -3,10 +3,10 @@ using namespace std;
int main() int main()
{ {
string s1,s2; char s1[1000],s2[1000];
cin>>s1>>s2; cin>>s1>>s2;
transform(s1.begin(),s1.end(),s1.begin(),::tolower); strlwr(s1);
transform(s2.begin(),s2.end(),s2.begin(),::tolower); strlwr(s2);
int c=s1.compare(s2); int c=strcmp(s1,s2);
cout<<c; cout<<c;
} }