반응형

백준 14645번 와이버스 부릉부릉 풀이 코드

C | C++ | Java | Python


풀이

'비와이'를 출력합니다.

코드

#include <stdio.h>

int main() {
    printf("비와이");
    return 0;
}
#include <iostream>

int main() {
    std::cout << "비와이" << std::endl;
    return 0;
}
public class Main {
    public static void main(String[] args) {
        System.out.println("비와이");
    }
}
print("비와이")

문제 출처

https://www.acmicpc.net/problem/14645

반응형

+ Recent posts