這個小型控制檯應用程序計算一個BigInteger並給我一個指數它命中的反饋。 現在我很好奇一些速度改進。我能做什麼? Thx爲您的建議! using System;
using System.Collections.Generic;
using System.Numerics;
namespace Counter
{
internal class Program
{
我試圖在數組的幫助下減去兩個大的正整數。但是當運行下面的代碼時,在g ++(Ubuntu)上運行時會出現分段錯誤(核心轉儲)。 我跟着Subtract numbers using arrays - C++和Subtracting two long positive integers in an array c++但是找不到很多幫助。您使用operator[]提領其元素之前 int main() {
以下是我寫查找N 1,N的前k個位數的Java private static int firstK(int n,int k)
{
double x, y;
x = n * Math.log10(n);
y = Math.floor(Math.pow(10, x - Math.floor(x) + k - 1));
return((int)y);
}