제출 #826797

#제출 시각아이디문제언어결과실행 시간메모리
826797amukkalir사이버랜드 (APIO23_cyberland)C++17
컴파일 에러
0 ms0 KiB
// Your First Program class HelloWorld { public static void main(String[] args) { System.out.println("Hello, World!"); } }

컴파일 시 표준 에러 (stderr) 메시지

cyberland.cpp:4:11: error: expected ':' before 'static'
    4 |     public static void main(String[] args) {
      |           ^~~~~~~
      |           :
cyberland.cpp:4:29: error: 'String' has not been declared
    4 |     public static void main(String[] args) {
      |                             ^~~~~~
cyberland.cpp:4:38: error: expected ',' or '...' before 'args'
    4 |     public static void main(String[] args) {
      |                                      ^~~~
cyberland.cpp:7:2: error: expected ';' after class definition
    7 | }
      |  ^
      |  ;
cyberland.cpp: In static member function 'static void HelloWorld::main(int*)':
cyberland.cpp:5:9: error: 'System' was not declared in this scope
    5 |         System.out.println("Hello, World!");
      |         ^~~~~~