Submission #2244261


Source Code Expand

#include<bits/stdc++.h>
using namespace std;
int main()
{
    char c;
    while(cin>>c)
        if(c!='a'&&c!='e'&&c!='i'&&c!='o'&&c!='u')
            cout<<c;
    cout<<endl
}

Submission Info

Submission Time
Task B - 罠
User luogu_bot1
Language C++ (GCC 5.4.1)
Score 0
Code Size 185 Byte
Status CE

Compile Error

./Main.cpp: In function ‘int main()’:
./Main.cpp:10:1: error: expected ‘;’ before ‘}’ token
 }
 ^