반응형
import java.math.BigInteger;
public class Main {
public static void main(String[] args) {
BigInteger bigInt = new BigInteger("1");
BigInteger bigTwo = new BigInteger("2");
String str = "";
int sum = 0;
for (int i = 0; i < 1000; i++) {
bigInt = bigInt.multiply(bigTwo);
}
str = bigInt.toString();
for (int j = 0; j < str.length(); j++) {
sum = sum + Integer.parseInt(String.valueOf(str.charAt(j)));
}
System.out.println(bigInt);
System.out.println(sum);
}
}
반응형
'알고리즘 > 오일러 프로젝트 문제' 카테고리의 다른 글
오일러 프로젝트 [문제 13번] (0) | 2020.05.28 |
---|---|
오일러 프로젝트 [문제 12번] -- 못품 (0) | 2020.05.28 |
오일러 프로젝트 [문제 11번] (0) | 2020.05.28 |
오일러 프로젝트 [문제 10번] (0) | 2020.05.28 |
오일러 프로젝트 [문제 9번] (0) | 2020.05.28 |