#12044: JAVA


FaiWei (ChunWeiYeah)

學校 : 樹德科技大學
編號 : 61317
來源 : [220.143.87.171]
最後登入時間 :
2017-09-19 20:14:15
a621. 1. Powers of Two -- HP CodeWars2007 | From: [1.174.26.251] | 發表日期 : 2017-05-19 14:48

import java.util.Scanner;
public class ddd{
public static void main(String[]argv){


Scanner sc=new Scanner(System.in);


int sum=sc.nextInt();
int total=-1;

for(int i=-1;i<sum;i++){
total++;
System.out.println("2^"+total+" "+"="+" "+(int)Math.pow(2,total));
}

 

}
}

 

 
ZeroJudge Forum