計算1^1+2^2+3^3+4^4+5^5+……+20^20 ,大數運算java實現

這個題目是明顯的大數運算,不能直接使用int long double 早就超出範圍了,要用數組結合字符串進行處理,分別實現大數的加法和乘法, 而後使用實現的加法和乘法寫出來n的n次冪的實現,最後 把它們加起來java //計算1^1+2^2+3^3+4^4+5^5+……+20^20 public class Main1 { public static void main(String[] ar
相關文章
相關標籤/搜索