Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
88182 田苒彤 字符类型 C++ Compile Error 0 MS 0 KB 497 2024-08-18 11:53:31

Tests(0/0):


Code:

#include<bits/stdc++.h> using namespace std; int k; int main() { //65~90 A 97~122 a 48~57 1 char a; cin>>a; if(a>=65&&a<=90){ if(a=='A'||a=='E'||a=='I'||a=='O'||a=='U'){ cout<<"Upper Vowel"; }else{ cout<<"Upper Letter"; } }else if(a>=97&&<=122){ if(a=='a'||a=='e'||a=='i'||a=='o'||a=='u'){ cout<<"Lower Vowel"; }else{ cout<<"Lower Letter"; } }else if(a>=48&&<=57){ cout<<"Digit"; }else{ cout<<"Other"; } return 0; }


Run Info:

Main.cc: In function 'int main()':
Main.cc:14:18: error: expected primary-expression before '<=' token
  }else if(a>=97&&<=122){
                  ^
Main.cc:20:18: error: expected primary-expression before '<=' token
  }else if(a>=48&&<=57){
                  ^