import javax.swing.*;
class compute
{
long square(long x)
{
return x*x;
}
boolean[] binary(long x)
{
int bitN=(int)Math.ceil(Math.log(x+1)/Math.log(2));
boolean [] b=new boolean[bitN];
int i=bitN-1;
do
{
b[i--]=((x&1)==1)?true:false;
x=x>>1;
} while (x!=0);
for (i=0;i<bitN; i++)
System.out.print(b[i]?1:0);
System.out.println();
return b;
}
}
public class power
{
public static void main(String[] argv) throws Exception
{
compute math=new compute();
long x=new Long(JOptionPane.
showInputDialog("x=")).longValue();
boolean[] b=math.binary(x);
long y=math.square(x);
JOptionPane.showMessageDialog(null, x+"*"+x+"="+Long.toString(y));
}
}
herrDeng網內搜尋
自訂搜尋
Ads
2010年5月13日 星期四
訂閱:
張貼留言 (Atom)
熱門文章
-
11!=?
-
計算你上學期加權平均
-
int a[]={21, 23, 57, 13 ,17, 6}; float average; average=?
-
猜數字
-
1. 利用遞迴input n算2^n 2. 用C算GCD(3333,456)
-
C字串練習 字串 char word[]="You win!"; 輸出為: You win! You win You wi You w You You Yo Y 給進階使用者: gets () 是個危險的函式!
-
解釋memset, memcpy
-
xgbzft
-
計算你的BMI
沒有留言:
張貼留言