Skip to content

백준, 프로그래머스 코딩 테스트 문제 풀기(Java & Python)

Notifications You must be signed in to change notification settings

Sungho95/Coding-Test

Repository files navigation

Java & Python

코딩 공부

public static String study(int effort){
    if (effort >= 100) {
        return "success";
    }
    else {
        return "failure";
    }
}

public static void main(String[] args){
        int my_effort = ?;
        System.out.println(study(my_effort));
}
def study(effort):
    if effort >= 100:
	return 'success'
    else:
	return 'failure'

my_effort = ?
print(effort(my_effort))

노력 100 이상인 사람이 되자.

About

백준, 프로그래머스 코딩 테스트 문제 풀기(Java & Python)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages