시작 전

App 만들기 - 기본기능

꿈꾸는야오옹 2022. 7. 1. 12:19
public class AccountingApp {

	public static void main(String[] args) {
		
		System.out.println("Value of supply : "+12345.0);
		System.out.println("VAT : "+12345.0*0.1);
		System.out.println("Total : "+(12345.0+12345.0*0.1));
		System.out.println("Expense : "+ (12345.0*0.3));
		System.out.println("Income : "+ (12345.0-12345.0*0.3));
		System.out.println("Dividend : "+ (12345.0-12345.0*0.3)* 0.5 );
		System.out.println("Dividend : "+ (12345.0-12345.0*0.3)* 0.3 );
		System.out.println("Dividend : "+ (12345.0-12345.0*0.3)* 0.2 );
		
		// 숫자 드래그 - edit - find replace 에서 모든 10000.0을 12345.0으로 한번에 바꿈 
		
		
	}

}