반응형

백준 15962번 새로운 시작 풀이 코드

C | C++ | Java | Python


풀이

'파이팅!!'을 출력합니다.

코드

#include <stdio.h>

int main() {
    printf("파이팅!!");
    return 0;
}
#include <iostream>
using namespace std;

int main() {
    cout << "파이팅!!";
    return 0;
}
public class Main {
    public static void main(String[] args) {
        System.out.print("파이팅!!");
    }
}
print("파이팅!!")

문제 출처

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

반응형

+ Recent posts