코딩테스트/CodeUp 기초 100제
1001 : [기초-출력] 출력하기01
02.19(금) [ 문제 ] C/C++언어에서 가장 기본적인 명령이 출력문이다. printf()를 이용해 다음 단어를 출력하시오. Hello [ 풀이 ] public class Main { public static void main (String[] args) { System.out.printf("Hello"); } }