import java.util.Scanner;
public class C1
{
public static void main(String[] args)
{
Scanner input = new Scanner(System.in);
//提示使用者輸入設定各變數起始值
System.out.println("請輸入n值:");
double n = input.nextDouble();
double j = 1;
double sumfor = 0;
double sumwhile = 0;
for(double i = 1 ; i <= n ; i++)//使用for loop 計算答案
{
double a = i;
double b = i+1;
double c = a / b ;
sumfor = sumfor + c;
}
System.out.printf("%4.2f",sumfor);
System.out.println("");
while(j <= n)//使用while loop 計算答案
{
double a = j;
double b = j + 1;
double c = j / b ;
sumwhile = sumwhile + c;
j = j + 1;
}
System.out.printf("%4.2f",sumwhile);
}
}
2014年7月12日 星期六
java程式設計題目---公式計算【(for loop && while loop)n/n+1】
設計一程式,請使用者輸入n,並帶入下列公式計算並印出結果至小數點第二位。【使用for loop 和 while loop 撰寫】公式如下:
訂閱:
張貼留言 (Atom)
Go(Golang)程式語言 設定GCC
下載MSYS2: https://www.msys2.org/ 安裝 程式開始執行後輸入: pacman -Syu y y 在安裝目錄底下找到msys2.exe,雙擊執行 輸入指令: pacman -Su pacman -S --needed base-devel mingw-...
-
MNIST手寫數字辨識資料集 MNIST手寫數字辨識資料集 ,是由 Yann LeCun(揚·勒丘恩) 大神所蒐集,這位大神同時也是Convulution Nueral Networks(卷積神經網絡)的創始人,因此享有"卷積網絡之父"的美譽。關於這位大...
-
Write a program that reads an integer between 100 and 999, and show the result of the sum, product and difference of all its digits. For ex...
-
顯示語言 在一班情況下, Vsiual Studio Code (VSCode) 安裝完成後為英語版本,當然它也附有其他九種語言,分別是:英文(美國)、簡體中文、繁體中文、法文、德文、義大利文、日文、韓文、俄文、西班牙文。各個語言與其代碼對照如下表: Display ...

沒有留言:
張貼留言