標題:
挑戰題 7/17
[打印本頁]
作者:
陳弘修
時間:
2021-7-17 11:44
標題:
挑戰題 7/17
問題描述:
已知男生標準體重=(身高-80 )*0.7;女生標準體重=(身高-70)*0.6;試寫一個程式可以計算男生女生的標準體重。
輸入說明:
每個測資檔案會有多組測資案例。輸入兩個數值,依序代表為身高及性別(1代表男性;2代表女性)。
輸出說明:
輸出標準體重,浮點數取至第一位。
in
172 1
165 2
out
64.4
57.0
作者:
李柏穎
時間:
2021-7-17 11:54
import java.util.Scanner;
public class JPD05
{
public static void main(String[] argv)
{
Scanner s=new Scanner(System.in);
float a, b, sum=0;
float c, d, sum2=0;
System.out.println("輸入身高 性別(男:1 女:2)");
a=s.nextInt();
b=s.nextInt();
c=s.nextInt();
d=s.nextInt();
if(b==1)
sum=(float) ((a-80)*0.7);
else
sum=(float) ((a-70)*0.6);
if(d==1)
sum2=(float) ((c-80)*0.7);
else
sum2=(float) ((c-70)*0.6);
System.out.printf("%.1f \n%.1f",sum,sum2);
}
}
複製代碼
作者:
林羿丞
時間:
2021-7-17 11:58
import java.util.Scanner;
public class JPD03 {
public static void main(String[] args) {
Scanner a= new Scanner(System.in);
double k, j;
System.out.println("in");
k=a.nextDouble();
j=a.nextDouble();
if (j==1) {
System.out.println("out");
System.out.println((k-80 )*0.7);
}else {
System.out.println("out");
System.out.println((k-70 )*0.6);
}
}
}
複製代碼
作者:
陳羿安
時間:
2021-7-17 11:59
import java.util.Scanner;
public class JPD05
{
public static void main (String[] args) throws java.lang.Exception
{
for(int i = 0;i <100;i++) {
double h1 = new Scanner(System.in).nextInt();
double x1= new Scanner(System.in).nextInt();
if(x1== 1) {
System.out.printf("%.1f",(long)(h1-80 )*0.7);
System.out.println();
}
if(x1== 2){
System.out.printf("%.1f",(long)(h1-70)*0.6);
System.out.println();
}
}
}
}
複製代碼
作者:
黃柏智
時間:
2021-7-17 12:01
import java.util.Scanner;
public class A00 {
public static Scanner s = new Scanner(System.in);
public static void main(String[] argv) {
System.out.println("Input身高and性別");
for(int i=0;i<2;i++) {
float a=s.nextFloat();
float b=s.nextFloat();
if(b==1) {
double sum=0;
sum=(a-80)*0.7;
System.out.printf("體重:%.1f\n",sum);
}else {
double sum=0;
sum=(a-70)*0.6;
System.out.printf("體重:%.1f\n",sum);
}
}
}
}
複製代碼
作者:
王銘鴻
時間:
2021-7-17 12:03
import java.util.Scanner;
public class JPD05
{
public static void main (String[] args) throws java.lang.Exception
{
for(int i = 0;i <100;i++) {
double h1 = new Scanner(System.in).nextInt();
double x1= new Scanner(System.in).nextInt();
if(x1== 1) {
System.out.printf("%.1f",(long)(h1-80 )*0.7);
System.out.println();
}
if(x1== 2){
System.out.printf("%.1f",(long)(h1-70)*0.6);
System.out.println();
}
}
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2