我是編程新手,嘗試使用數組編程多項式的導數時遇到問題。以下是我必須得到用戶的輸入。在java中使用數組尋找多項式的導數
Scanner sc=new Scanner(System.in);
System.out.print("Enter the degree: ");
int degree = sc.nextInt();
System.out.print("Enter "+(degree+1)+" coefficients: ");
double[] C = new double[degree+1];
for(int i=0; i<C.length;i++) {
C[i]=sc.nextDouble();
}
你能在紙上做手工?我的意思是,你在數學或編程方面遇到麻煩嗎? – csmckelvey
因此,現在循環遍歷您讀入的雙數組並計算導數多項式的係數。 –
這不是一個答案(因爲問題不清楚),但你可能有興趣閱讀http://en.wikipedia.org/wiki/Horner%27s_method – Marco13