码迷,mamicode.com
首页 > 其他好文 > 详细

成年人消耗卡路里

时间:2014-08-31 02:52:41      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:成年人消耗卡路里计算

成年人消耗卡路里计算:

//成年人消耗卡路里
#include<iostream>

double metabolism(double weight);
double activity(int degree,double weight,int minutes);

int main()
{
    using namespace std;
    double weight,calorie;
    int degree,minutes,n;
    double cal1,cal2;
    
    cout<<"Please input the weight,the degree,the minutes,the calorie of one food:";
    cin>>weight>>degree>>minutes>>calorie;
    
    cal1 = metabolism(weight);
    cal2 = activity(degree,weight,minutes);
    
    n = (cal1 + cal2)/(0.9 * calorie);
    
    cout<<"You need "<<n<<" parts food!"<<endl;
    
    return 0;
}

double metabolism(double weight)
{
    return 70 * (weight/2.2)*0.765;
}

double activity(int degree,double weight,int minutes)
{
    return 0.0385 * degree * weight *minutes;
}

结果:

Please input the weight,the degree,the minutes,the calorie of one food:100 10 10 1000
You need 3 parts food!


成年人消耗卡路里

标签:成年人消耗卡路里计算

原文地址:http://9320314.blog.51cto.com/9310314/1546922

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!