1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
|
#include<iostream.h>
#include<stdlib.h>
using namespace std;
struct a1{
string thepatientname
int recordnumber
int thepatientage
int dateofbirth
string fstdiseasename
string discfstdisease
string secdiseasename
string discsecdisease
string thidiseasename
string discthidisease
};
void addnewpatient( string thepatientname1,
int recordnumber1,
int thepatientage1,
int dateofbirth1,
string fstdiseasename1,
string discfstdisease1,
string secdiseasename1,
string discsecdisease1,
string thidiseasename1,
string discthidisease1 )
{
a1 a1copy1.[3]
for (int i = 0; i>= 3 ;1++)
thepatientname1 = a1copy1.thepatientname[i]
recordnumber1 = a1copy1.recordnumber[i]
thepatientage1 = a1copy1.thepatientage[i]
dateofbirth1 = a1copy1.dateofbirth[i]
fstdiseasename1 = a1copy1.fstdiseasename[i]
discfstdisease1 = a1copy1.discfstdisease[i]
secdiseasename1 = a1copy1.secdiseasename[i]
discsecdisease1 = a1copy1.discsecdisease[i]
thidiseasename1 = a1copy1.thidiseasename[i]
discthidisease1 = a1copy1.discthidisease[i]
}
void editpatientrecord( )
{
}
void adddisease( )
{
}
void editdisc( )
{
}
int main{
a1 a1copy
addnewpatient(" ", , , ," "," "," "," "," " ," ");
editpatientrecord (" ");
adddisease(" ");
editdisc (" ");
system("PAUSE");
return 0;
}
|