給定多項式A(x)
輸出多項式x*A(x)
herrDeng網內搜尋

自訂搜尋
Ads
訂閱:
張貼留言 (Atom)
熱門文章
-
請用CPU-Z軟體檢測Cache & Memory 註:快取(L1-L3: SRAM) 第一級快取(L1)–通常存取只需要幾個週期,通常是幾十個KB。 第二級快取(L2)–比L1約有2到10倍較高延遲性,通常是幾百個KB或更多。 第三級快取(L3)(不...
-
需要練習的Java程式:
-
C++ DP速解難題leetcode 3363 Find the Maximum Number of Fruits Collected [Python解請進]
-
計算gcd(123456789,999999999)
-
Leetcode 342 Power of Four幾個C++一行解 [codes on Leetcode] https://leetcode.com/problems/power-of-four/solutions/7081839/9-ways-of-bit-manipula...
-
問int怎麼存-689這個數字。 int用4個bytes。 答案請用16進位表達。
5 則留言:
class B1
{
public static void main(String[] args)
{
int j=3;
float[] poly=new float[3];
poly[0]=1.4f;
poly[1]=2.3f;
poly[2]=3.7f;
for(int i=poly.length-1;i>=0;i--)
{
System.out.print(poly[i]+"X^"+(i+1)+"+");
if(i==0)
{System.out.print(poly[i]+"X^"+(i+1));}
}
System.out.println();
}
}
class ex
{
public static void main(String[] args)
{
int j=3;
float[] poly=new float[3];
poly[0]=1.4f;
poly[1]=2.3f;
poly[2]=3.7f;
for(int i=poly.length-1;i>=0;i--)
{
System.out.print(poly[i]+"X^"+(i+1)+"+");
if(i==0)
{System.out.print(poly[i]+"X^"+(i+1));}
}
System.out.println();
}
}
public class A2
{
public static void main(String[] args)
{
int j=3;
float[] poly=new float[3];
poly[0]=2.4f;
poly[1]=3.6f;
poly[2]=4.5f;
for(int i=poly.length-1; i>=0; i--)
{
System.out.print(poly[i]+"X^"+(i+1)+" + ");
if(i==0)
{
System.out.print(poly[i]+"X^"+(i+1));
}
}
System.out.println();
}
}
class A1
{
public static void main(String[] args)
{
int j=3;
float[] poly=new float[3];
poly[0]=1.4f;
poly[1]=2.3f;
poly[2]=3.7f;
for(int i=poly.length-1;i>=0;i--)
{
System.out.print(poly[i]+"X^"+(i+1)+"+");
if(i==0)
{System.out.print(poly[i]+"X^"+(i+1));}
}
System.out.println();
}
}
public class 12{
public static void main(String[] args)
{
int j=3;
float[] poly=new float[3];
poly[0]=2.4f;
poly[1]=3.6f;
poly[2]=4.5f;
for(int i=poly.length-1; i>=0; i--)
{
System.out.print(poly[i]+"X^"+(i+1)+" + ");
if(i==0)
{
System.out.print(poly[i]+"X^"+(i+1));
}
}
System.out.println();
}
}
張貼留言