/* TODO: Replace these file comments with a description of what your program
* does.
*/
import acm.program.*;
public class RaiseToPower extends ConsoleProgram {
public void run() {
/* Sit in a loop reading bases and exponents and printing out the values
* produced by raising the base to the exponent.
*/
while (true) {
double base = readDouble("Enter base: ");
int exponent = readInt("Enter exponent: ");
println(base + " ^ " + exponent + " = " + raiseToPower(base, exponent));
}
}
private double raiseToPower(double base, int exponent) {
/*
* if exponent = 0,then return 1,
* else if exponent > 1,return base^exponent,
* else return 1/(base^exponent)
*/
if(exponent ==0 ){
return 1;
}else if(exponent > 0){
double temp = 1;
for (int i=0;i<exponent;i++){
temp = temp * base;
}
return temp;
}else{
double temp = 1;
for (int i=0 ; i<-exponent ;i++){
temp = temp * base;
}
return 1/temp;
}
}
}
CS106A assignment3 --problem3 Exponentiation
最后編輯于 :
?著作權歸作者所有,轉載或內容合作請聯系作者
平臺聲明:文章內容(如有圖片或視頻亦包括在內)由作者上傳并發布,文章內容僅代表作者本人觀點,簡書系信息發布平臺,僅提供信息存儲服務。
平臺聲明:文章內容(如有圖片或視頻亦包括在內)由作者上傳并發布,文章內容僅代表作者本人觀點,簡書系信息發布平臺,僅提供信息存儲服務。
- 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人,你說我怎么就攤上這事。” “怎么了?”我有些...
- 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著,像睡著了一般。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發上,一...
- 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了?” 一聲冷哼從身側響起,我...