This file contains hidden or 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
package org.example.assignment_03_18; | |
/* 정재명 | |
* | |
* 결제 금액 캐시백 계산 프로그램 | |
* [캐시백 계산 조건] | |
* - 결재 금액의 10%를 적립한다. | |
* - 캐시백포인트 단위는 백원단위이다.(100원, 200원, 300원 등) | |
* - 한건의 캐시백 포인트는 최대 300원을 넘을 수 없습니다. | |
*/ |
This file contains hidden or 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
package org.example.assignment_03_18; | |
/* 정재명 | |
* | |
* 콘솔 화면에 구구단 출력하기 | |
* | |
* JAVA의 다중 반복문, format함수, 제목 및 1단부터 9단까지 표시(예시와 동일 레이아웃) | |
*/ | |
public class p01 { | |
public static void main(String[] args) { |
NewerOlder