hi , can you help me guys

hi guys iam not much in c++ but iam old in games programming by action script it all debend on the events so the function are so easy but here in c++ i got some errors while iam trying to answer question so i leave it empty because i just made mistakes in the functions so i hope you guys can give me the right answer and he variable for my question and thank you again and sorry because i asked this

here is the code

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
#include<iostream.h>
#include<stdlib.h>
using namespace std;

struct a1{
  string thepatientname
int recordnumber 
 int  thepatientage
 int dateofbirth
 string fstdiseasename //first  disease name
 string discfstdisease //discrption  first dis....
  string secdiseasename //second ...
  string  discsecdisease//discrption  second dis....
  string thidiseasename //third...
   string discthidisease//discrption  third dis....
   
};

   void addnewpatient(          )
      {
           
           
           
           }
            void editpatientrecord(          )
           {
                 
                 
                 
                 }
                 
                 void adddisease(         )  //add new disease to the patient
                 {
                      
                      
                      
                      
                      }
                      
                      
                      void editdisc(       ) //Amendment to the description of a patient already exists
                      {
                           
                           
                           
                           
                           }
                           
                           
                           int main{
                               
                               addnewpatient("    ");
                                editpatientrecord ("   ");
                                adddisease("       ");
                                editdisc ("     ");
                                
                                  
 system("PAUSE");
 return 0;
}
                               
          





i just have probem with the emptys functions
thank you guys and this is realy nice forum
Last edited on
Re-post...
http://www.cplusplus.com/forum/general/74880/
Please don't re-post.
can you help me please ms.tresky?
why the strange method of indenting? makes the program difficult to read.
...
Last edited on
hi here i fixed some of the code
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;
}

thank you again for replay
here the question
1- add new patient 2- edit patient data
3-add new disease with description to that disease
4-edit description for patient already exist .
sorry i didn,t get it what you mean in the begin
Last edited on
Topic archived. No new replies allowed.