Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
37599 zhouhuanyu 玙静 忽略大小写的字符串比较 C++ 编译错误 0 MS 0 KB 237 2024-01-21 20:52:08

Tests(0/0):


#include <bits/stdc++.h> using namespace std; int main(){ char a[85], b[85]; gets(a); gets(b); strlwr(a); strlwr(b); if(a > b){ cout << ">"; }else if(a < b){ cout << "<"; }else{ cout << "="; } return 0; }


测评信息: