عرض مشاركة واحدة
منتديات طلاب وطالبات جامعة الملك عبد العزيز منتديات طلاب وطالبات جامعة الملك عبد العزيز
قديم 05-10-2012, 02:31 PM   #475

loffe

جامعي

 
تاريخ التسجيل: Aug 2012
نوع الدراسة: إنتظام
المستوى: الثالث
الجنس: أنثى
المشاركات: 8
افتراضي رد: Cpcs 202 شروحات وحلول وواجبات الجافا

عندي سؤال ابغى يشرحلي هو حاولت احله بس موراضي البرنامج بس يعطيني ايرور

The Harris-Benedict equation estimates the number of calories your body needs to maintain your weight if you do no exercise. This is called your basal bolic rate or BMR.

The calories needed for a woman to maintain her weight is:
BMR = 655 + (4.3 * weight) + (4.7 * height) - (4.7 * age)

The calories needed for a man to maintain his weight is:
BMR = 66 + (6.3 * weight in pounds) + (12.9 * height in inches) - (6.8 * age in years)

A typical chocolate bar will contain around 230 calories. Write a program that allows the user to input their weight in pounds, height in inches, and age in years. The program should then output the number of chocolate bars that should be consumed to maintain one’s weight for both a woman and a man of the input weight, height, and age.

Notes:

This project gives the student practice with numerical calculations and simple input/output. For a slightly more challenging problem allow the height to be entered in feet and inches and have the program convert to inches.

1 kg = 2.2046226218487757 pounds
1 m = 39.37007874015748 inches


انا هدا حلي وقفت الين هنا

public class Weight {
private static double weight;

/
* @param args the command line arguments
*/
public static void main(String[] args) {
Scanner input = new Scanner (System.in);
System.out.print("Enter weight");
double num1 = input.nextInt();
System.out.print("Enter height");
double num2 = input.nextInt();
System.out.print("Enter age");
int num3 = input.nextInt();
double caloriesmale,caloriesfamele;
caloriesfamele = 655 + (4.3 * weight) + (4.7 * height) - (4.7 * age);
caloriesmale = 66 + (6.3 * weight) + (12.9 * height) - (6.8 * age);

 

loffe غير متواجد حالياً   رد مع اقتباس