Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
155993 解禾溪 09判断ASCLL码 C++ Compile Error 0 MS 0 KB 487 2026-06-19 18:34:25

Tests(0/0):


Code:

#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ int a; cin>>a; if(){ cout<<"Upper Letter"; } else if(){ cout<<"Lower Letter"; } else if(){ cout<<"Digital"; } else{ cout<<"other"; } return 0; }


Run Info:

Main.cc: In function 'int main()':
Main.cc:10:8: error: expected primary-expression before ')' token
     if(){
        ^
Main.cc:13:13: error: expected primary-expression before ')' token
     else if(){
             ^
Main.cc:16:13: error: expected primary-expression before ')' token
     else if(){
             ^