Notice
Recent Posts
Recent Comments
Link
투케이2K
238. (java/자바) 퍼센트 percent 값 구하기 실시 및 소수점 자리 수 포맷 실시 본문
[개발 환경 설정]
개발 툴 : Eclipse
개발 언어 : Java
[소스 코드]
package ex6;
public class MainActivity14 {
public static void main(String[] args) {
// TODO Auto-generated method stub
System.out.println("[Program Start]");
System.out.println("");
/* [요약 설명]
* 1. 퍼센트 값 구하기 : 현재 값 / 전체 값 * 100 연산을 수행합니다
* 2. String.format : string 형태로 특정 데이터를 포맷해서 형변환을 수행합니다
* 3. String.format("%.1f", 데이터) : 소수점 1자리 까지만 출력
* 4. String.format("%.2f", 데이터) : 소수점 2자리 까지만 출력
* */
double oneTotalValue = 250;
double oneNowValue = 108;
double onePerc = (double) oneNowValue / (double) oneTotalValue * 100.0;
System.out.println("oneTotalValue : " + oneTotalValue);
System.out.println("oneNowValue : " + oneNowValue);
System.out.println("onePerc : " + String.format("%.2f", onePerc) + "%");
System.out.println("");
double twoTotalValue = 100;
double twoNowValue = 35;
double twoPerc = (double) twoNowValue / (double) twoTotalValue * 100.0;
System.out.println("twoTotalValue : " + twoTotalValue);
System.out.println("twoNowValue : " + twoNowValue);
System.out.println("twoPerc : " + String.format("%.2f", twoPerc) + "%");
System.out.println("");
}// 메인 종료
}// 클래스 종료
[결과 출력]
[요약 설명]
/* [요약 설명]
* 1. 퍼센트 값 구하기 : 현재 값 / 전체 값 * 100 연산을 수행합니다
* 2. String.format : string 형태로 특정 데이터를 포맷해서 형변환을 수행합니다
* 3. String.format("%.1f", 데이터) : 소수점 1자리 까지만 출력
* 4. String.format("%.2f", 데이터) : 소수점 2자리 까지만 출력
* */
반응형
'Java' 카테고리의 다른 글
240. (java/자바) Date 사용해 두 날짜 차이 계산 실시 - 초(sec), 분(min), 시간(hour), 날짜(day) (0) | 2022.02.10 |
---|---|
239. (java/자바) throws Exception 사용해 예외 상황 체크 및 try catch 구문에 예외 발생 리턴 실시 (0) | 2022.01.23 |
237. (java/자바) list to hashset 변환 및 데이터 중복 제거 실시 (0) | 2021.09.08 |
236. (java/자바) 알고리즘 : 스킬트리 - replaceAll 정규식 , 특정 문자 패턴 출력 (0) | 2021.08.24 |
235. (java/자바) 알고리즘 : 예산 - for 문 , Arrays sort 배열 정렬 (0) | 2021.08.21 |
Comments