알고리즘 썸네일형 리스트형 계산기 프로그램 계산기 1. String을 쪼개서 Vector에 담는다.2. 가장 먼저 계산하여할 연산자를 찾는다.3. 연산자를 기준으로 left, right value를 꺼낸다.4. 연산자, left, right value를 삭제한다.5. 연산자와 value를 연산한다.6. 반올림을 통하여 자리수를 맞춘다.7. Vector에 추가한다. package babosamo.tistory; import java.util.Vector; public class Calculator { public static void main(String[] args) {String inputData = "25.4 * 8 + 120 - 45 / -3.5 + 45 + 12 / 45 * 0.12";String[] splitData = inputData.. 더보기 파스칼의 삼각형 본문을 한글로만 쓰면 트랙백이 안되는구나 한글 조금 써도 안되네.. 뭐지?package babosamo.tistory; public class TriangleOfPascal {static final int InitNumber = 1;public static void main(String[] args) {final int Depth = 6;//input test valueint[][] result = calPascalArray(Depth);printPascalArray(result);}private static int[][] calPascalArray(int depth){int[][] result = new int[depth][];int[] first = {InitNumber};result[0] = fir.. 더보기 이전 1 다음