[ 안드로이드, Java ] 소수점 n째 자리까지 자르기
/** * 소수점 n째자리까지 자름. * 반올림이 아니라 버림이다. 주의하셍 * */ public String adjustMinority(String minority, int n){ // 소수점이 있다면 if(minority.contains(".")){ // .을 기준으로 쪼개서 String[] splitedMinority = minority.split("[.]"); // 소수점 이하 자리수가 n보다 큰지 작은지 재보자 //n보다 크다면 잘라내고, //n보다 작다면 n만큼 0을 채워넣어야겠지? if(splitedMinority[1].length() > n){ splitedMinority[1] = splitedMinority[1].substring(0, n); }else if(splitedMinority[..
Computer/Android&iOS
2014. 2. 4. 14:32
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- C언어
- Asterisk
- 점유율
- 안드로이드
- linux
- 뉴스룸
- 배열
- Swift
- 서버
- 스위프트
- git hub
- GIT
- nodejs
- 노드
- Node
- Phaser
- C
- 손석희
- IOS
- 앵커브리핑
- CentOS
- Android
- 리눅스
- xcode
- node.js
- php
- BBC 가쉽
- 깃헙
- Kotlin
- mysql
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
글 보관함