473,760 Members | 10,633 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

what`s wrong with it

hii,

can you tell me plzz why my programme doesn`t work ,i don`t have any
errors and every thing is fine but i don`t know why it`s not working ,
soo plz can you help me un finding my mistake
i will past the proramme here ,

the headers,

#include<string >

using namespace std;

#ifndef H_Gymnasium
#define H_Gymnasium

struct activities
{
string exercises;
int time;
};

class Gymnasium
{
protected:
activities gymarray[5];
int gymlength;
public:
void set(string,int) ;
void getActivities(s tring&,int&)con st;
double calories();
void print();
Gymnasium(strin g="", int=0 );
};
#endif

#include<string >

using namespace std;

#ifndef H_Nutrition
#define H_Nutrition

struct meals
{
string food;
int portion;

};

class Nutrition
{
protected:
meals nutritionarray[5];
int nutritionLength ;

public:
void set(string,int) ;
void getMeals(string & , int&)const;
void print();
Nutrition(strin g="" , int=0);
double calories();
};
#endif

#include <string>
#include"Regime .h"
#ifndef H_Patient
#define H_Patient

using namespace std;

struct person
{
string name;
double energy;
};

class Patient:public Gymnasium , public Nutrition,publi c Regime
{

public:
void set(string,int, string,int,stri ng,double);
void get(string&,int & ,string& ,int&,string&,d ouble&)const;
void print();
Patient(string= "",int=0,string ="",int=0,strin g=0,double=0);
double calories(); // find the difference between gained & lost
calories and
//and sub. it from the energy
private:
person info;
Regime regimePlan;
};
#endif

#include<string >
#include"Gymnas ium.h"
#include"Nutrit ion.h"

#ifndef H_Regime
#define H_Regime

using namespace std;

class Regime
{
public:
void set(string,int ,string,int);
void print();
Regime(string=" " ,int=0,string=" ",int=0);
double calories();

private:
Gymnasium exercisePlan ;
Nutrition dietPlan;
};
#endif
=============== =============== =============== ==
the implitation

#include <iostream>
#include <string>
#include "Gymnasium. h"

using namespace std;
const int gymlength=5;

void Gymnasium::set( string ex , int T )
{
gymarray[gymlength].exercises=ex;
gymarray[gymlength].time=T;

}

void Gymnasium::getA ctivities(strin g& ex , int& T )const
{
ex=gymarray[gymlength].exercises;
T=gymarray[gymlength].time;

}

void Gymnasium::prin t()
{
cout<<"He/She lost "<<calories()<< "calories"<<end l;
}

Gymnasium::Gymn asium(string ex , int T )
{

gymarray[gymlength].exercises=ex;
gymarray[gymlength].time=T;
}

double Gymnasium:: calories()
{
int total,calories ,i,lostcalories ;

for(i=0;i>gymle ngth;i++)
{

if (gymarray[i].exercises=="Op enGym"){
calories=680*gy marray[i].time;

}
else if (gymarray[i].exercises=="Tr eadmill"){
calories=820*gy marray[i].time;

}
else if (gymarray[i].exercises=="Bi ke"){
calories=620*gy marray[i].time;

}
else if (gymarray[i].exercises=="Fi tness"){
calories=740*gy marray[i].time;

}
else if (gymarray[i].exercises=="Ho op"){
calories=210*gy marray[i].time;
}
total+=calories ;

}

lostcalories=to tal/60;
return lostcalories;

}

#include<iostre am>
#include<string >
#include"Nutrit ion.h"

using namespace std;

const int Nutritionlength =4;

void Nutrition::set( string f , int p )
{
nutritionarray[Nutritionlength].food=f;
nutritionarray[Nutritionlength].portion=p;

}

void Nutrition ::getMeals(stri ng&f , int&p )const
{
f=nutritionarra y[Nutritionlength].food;
p=nutritionarra y[Nutritionlength].portion;

}

Nutrition::Nutr ition(string f , int p )
{
set(f,p);
}

double Nutrition::calo ries()
{
int total,calories ,i,gainedcalori es;

for(i=0;i>4;i++ )
{
nutritionarray[i].food;
nutritionarray[i].portion;

if (nutritionarray[i].food=="Carbohy drates"){
calories=90*nut ritionarray[i].portion;

}
else if (nutritionarray[i].food=="Protein "){
calories=70*nut ritionarray[i].portion;

}
else if (nutritionarray[i].food=="Vitamin s"){
calories=50*nut ritionarray[i].portion;

}
else if (nutritionarray[i].food=="Water") {
calories=10*nut ritionarray[i].portion;

}

total+=calories ;
}

gainedcalories= total/100;

return gainedcalories;
}
void Nutrition:: print()
{
cout<<"He/She gained "<<calories()<< "calories"<<end l;
}

#include<iostre am>
#include <string>
#include"Patien t.h"

using namespace std;

void Patient::set(st ring ex,int T,string f,int p,string n,double e)
{
Gymnasium::set( ex,T);
Nutrition::set( f,p);
info.name=n;
info.energy=e;

}

void Patient::get(st ring& ex,int& T ,string& f ,int& p,string&
n,double&e)cons t
{
Gymnasium::getA ctivities(ex,T) ;
Nutrition::getM eals(f,p);
n=info.name;
e=info.energy;
}

void Patient::print( )
{

cout<<"Before the regime"<<info.n ame<<"energy was
"<<calories()<< "calories"<<end l;
Regime::print() ;
Gymnasium::prin t();
Nutrition::prin t();
}

Patient::Patien t(string ex,int T,string f,int p,string n,double
e):Gymnasium(ex ,T),Nutrition(f ,p),
Regime(ex,T,f,p )
{
n=info.name;
e=info.energy;
}

double Patient::calori es()
{
int before;

before=Regime:: calories()+600;

return before;
}

#include<iostre am>
#include<string >
#include"Regime .h"
using namespace std;

void Regime::set(str ing ex,int T,string f,int p)
{
exercisePlan.se t(ex,T);
dietPlan.set(f, p);
}

void Regime::print()
{
cout<<"After the regime Ahmed energy is
"<<calories()<< "calories"<<end l;
}

Regime::Regime( string ex,int T,string f,int p)
{
exercisePlan.se t(ex,T);
dietPlan.set(f, p);
}

double Regime::calorie s()
{
int After;

After=dietPlan. calories()- exercisePlan.ca lories();

return After;
}
=============== =============== ==
the driver
#include<iostre am>
#include<string >
#include<fstrea m>
#include"Gymnas ium.h"
#include"Nutrit ion.h"
#include"Patien t.h"
#include"Regime .h"

using namespace std;
int main()
{
Patient A;

int T,p ;
string f , ex , n;
double e;

cin>>n>>e;
cout<<endl;

ifstream inFile;

inFile.open("pa tientActivities .txt");

inFile>>ex>>T;
inFile.close();
inFile.open("pa tientMeals.txt" );

inFile>>f>>p;

inFile.close();

A.set(ex,T,f,p, n,e);

A.print();

return 0;

}

Oct 28 '07 #1
1 1316
CuTe_Engineer wrote:
hii,

can you tell me plzz why my programme doesn`t work ,i don`t have any
errors and every thing is fine but i don`t know why it`s not working ,
soo plz can you help me un finding my mistake
i will past the proramme here ,

the headers,
[program redacted]

What's wrong with it? We're not psychic. Tell us what you were
expecting and what you got and why you think that's wrong.
Oct 29 '07 #2

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

125
14832
by: Sarah Tanembaum | last post by:
Beside its an opensource and supported by community, what's the fundamental differences between PostgreSQL and those high-price commercial database (and some are bloated such as Oracle) from software giant such as Microsoft SQL Server, Oracle, and Sybase? Is PostgreSQL reliable enough to be used for high-end commercial application? Thanks
5
2835
by: titan0111 | last post by:
#include<iostream> #include<iomanip> #include<cstring> #include<fstream> using namespace std; class snowfall { private: int ft;
72
5890
by: E. Robert Tisdale | last post by:
What makes a good C/C++ programmer? Would you be surprised if I told you that it has almost nothing to do with your knowledge of C or C++? There isn't much difference in productivity, for example, between a C/C++ programmers with a few weeks of experience and a C/C++ programmer with years of experience. You don't really need to understand the subtle details or use the obscure features of either language
121
10149
by: typingcat | last post by:
First of all, I'm an Asian and I need to input Japanese, Korean and so on. I've tried many PHP IDEs today, but almost non of them supported Unicode (UTF-8) file. I've found that the only Unicode support IDEs are DreamWeaver 8 and Zend PHP Studio. DreamWeaver provides full support for Unicode. However, DreamWeaver is a web editor rather than a PHP IDE. It only supports basic IntelliSense (or code completion) and doesn't have anything...
28
3276
by: Madhur | last post by:
Hello what about this nice way to open a file in single line rather than using if and else. #include<stdio.h> void main() { FILE *nd; clrscr(); fopen("c:\\autoexec.bat","r")&&printf("success") || printf("error opeing
56
4339
by: Cherrish Vaidiyan | last post by:
Frinds, Hope everyone is doing fine.i feel pointers to be the most toughest part in C. i have just completed learning pointers & arrays related portions. I need to attend technical interview on C. wat type of questions should be expected? Which part of C language do the staff give more concern? The interviewers have just mentioned that .. i will have interview on C. Also can anyone can help me with sites where i can go thru sample
46
4247
by: Keith K | last post by:
Having developed with VB since 1992, I am now VERY interested in C#. I've written several applications with C# and I do enjoy the language. What C# Needs: There are a few things that I do believe MSFT should do to improve C#, however. I know that in the "Whidbey" release of VS.NET currently
13
5053
by: Jason Huang | last post by:
Hi, Would someone explain the following coding more detail for me? What's the ( ) for? CurrentText = (TextBox)e.Item.Cells.Controls; Thanks. Jason
9
2123
by: Pyenos | last post by:
import cPickle, shelve could someone tell me what things are wrong with my code? class progress: PROGRESS_TABLE_ACTIONS= DEFAULT_PROGRESS_DATA_FILE="progress_data" PROGRESS_OUTCOMES=
3
2147
by: Siong.Ong | last post by:
Dear all, my PHP aims to update a MySQL database by selecting record one by one and modify then save. Here are my PHP, but I found that it doesnt work as it supposed to be, for example, when Record (i) is shown and modified, the change will come to Record (i+1). Can anyone provide suggestion? thanks.
0
9521
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9333
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10107
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
9945
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
9900
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9765
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
7324
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
3
3442
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2733
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.