This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.Scanner; | |
/* | |
* 과제 2. 결제 금액 캐시백 계산 프로그램 | |
* | |
* 작성자 : 김지현 | |
* 작성일 : 2023-03-02 | |
* */ | |
public class MiniAssignment02 { | |
public static void main(String[] args) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* 과제 1. 큰솔 화면에 구구단 출력하기 | |
* | |
* 작성자 : 김지현 | |
* 작성일 : 2023-03-02 | |
* */ | |
public class MiniAssignment01 { | |
public static void main(String[] args) { | |
String tab = "\t"; |
NewerOlder