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 data; | |
public class Test04편의점계산기 { | |
public static void main(String[] args) { | |
int TriangleGimbap = 1500; | |
int Count = 5; | |
int eventTotal = TriangleGimbap * (Count / 2 + Count % 2); |
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 data; | |
public class Test03커피자판기 { | |
public static void main(String[] args) { | |
int americanoPrice = 2500; | |
int mochalattePrice = 3000; | |
int americanoCount = 15; | |
int mochalatteCount = 27; |