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 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284
|
//------------------------------------------------------------------------------
#include <cstdlib>
#include <iostream>
#include <iomanip>
#include <conio.h>
#include <fstream>
using namespace std;
const char FILE_PATH[] = "E:\\iofile";
//------------------------------------------------------------------------------
struct Student
{
char names [ 16 ];
int other;
};
fstream MyFile ( FILE_PATH , ios :: binary | ios :: in | ios :: out );
void createFile();
void mainMenu();
void funcSwitch();
void addRecord();
int displayRecord();
void updateRecord();
void deleteRecord();
void printRecords();
int searchRecord();
//------------------------------------------------------------------------------
int main ( int argc, char* argv [] )
{
createFile();
mainMenu();
}
//------------------------------------------------------------------------------
void mainMenu()
{
cout << "Welcome to School Enrolment System" << endl << endl
<< "Please enter your selection: " << endl
<< "1. Register - New Student (Add record)" << endl
<< "2. Look Up - Existing Student (Display record)" << endl
<< "3. Change Details (Update record)" << endl
<< "4. Remove Student (Delete record)" << endl
<< "5. Show all Students (Print all)" << endl
<< "6. Exit " << endl << endl
<< "Selection: ";
funcSwitch();
}
//------------------------------------------------------------------------------
void funcSwitch()
{
char choice;
choice = getch();
clrscr();
while ( choice != 54 )
{
switch ( choice )
{
case '1' :
addRecord();
getch();
clrscr();
break;
case '2' :
displayRecord();
getch();
break;
case '3' :
updateRecord();
getch();
break;
case '4' :
deleteRecord();
getch();
break;
case '5' :
printRecords();
getch();
break;
case '6' :
break;
default :
cout << choice << " is not a vaild choice" << endl << endl
<< "Press any key to choose again... ";
getch();
clrscr();
}
mainMenu();
choice = getch();
clrscr();
}
}
//------------------------------------------------------------------------------
void addRecord()
{
Student temp;
cout << "Welcome new Student!" << endl
<< "We're going to set you up with a new Enrolment..." << endl
<< "All we need is a few details, let's begin: " << endl;
cout << endl << "Please enter first name : ";
cin >> temp.names;
cout << endl << "Please enter your age : ";
cin >> temp.other;
MyFile.open ( FILE_PATH , ios :: binary | ios :: app | ios :: out );
MyFile.clear();
MyFile.write ( ( const char* ) &temp, sizeof ( Student ) );
MyFile.clear();
MyFile.close();
}
//------------------------------------------------------------------------------
int searchRecord()
{
return 0;
}
//------------------------------------------------------------------------------
int displayRecord()
{
Student temp;
int age;
int position;
cout << "Enter age of person you are seeking: ";
cin >> age;
clrscr();
MyFile.open ( FILE_PATH , ios :: binary | ios :: in );
MyFile.clear();
MyFile.seekp ( position * sizeof ( Student ), ios :: beg );
MyFile.read ( ( char* ) &temp, sizeof ( Student ) );
if ( age != temp.other )
{
cout << endl << "No record found. Press any key to continue...";
}
else
{
cout << "We found your record: " << endl << endl
<< "Name: " << temp.names << endl
<< "Age: " << temp.other << endl;
}
cout << endl << "Press any key to continue..." << endl;
getch();
clrscr();
mainMenu();
MyFile.close();
return 0;
}
//------------------------------------------------------------------------------
void updateRecord()
{
Student temp;
time_t t;
char choice;
int position;
position = displayRecord ();
MyFile.open( FILE_PATH, ios :: binary | ios :: out );
MyFile.clear();
if( position != -1 )
{
cout << endl << "Do you want to Update this Record( y or n )";
choice = getch();
}
if( choice == 'y' )
{
cout << endl << "Enter name : ";
cin >> temp.names;
cout << endl << "And your age : ";
cin >> temp.other;
MyFile.open( FILE_PATH, ios :: binary | ios :: out );
MyFile.clear();
MyFile.seekp( position * sizeof( Student ), ios :: beg );
MyFile.clear();
MyFile.write( ( const char* ) &temp, sizeof( Student ) );
MyFile.close();
}
}
//------------------------------------------------------------------------------
void deleteRecord()
{
Student temp;
char choice;
int position;
-MyFile.open( FILE_PATH, ios :: binary | ios :: in | ios :: out );
MyFile.clear();
MyFile.seekp( position * sizeof( Student ), ios :: beg );
MyFile.read( ( char* )&temp, sizeof( Student ) );
cout << endl << endl;
cout << "Would you like to delete this record? Yes (y) or No (n): ";
cin >> choice;
choice = getch();
MyFile.seekp( position * sizeof( Student ), ios :: beg );
MyFile.write( ( const char* )&temp, sizeof( Student ) );
getch();
clrscr();
mainMenu();
MyFile.close();
}
//-----------------------------------------------------------------------------
void printRecords()
{
Student temp;
MyFile.open ( FILE_PATH , ios :: binary | ios :: in );
MyFile.clear();
MyFile.read ( ( char* ) &temp, sizeof ( Student ) );
while ( ! MyFile.eof() )
{
cout << "Name: " << temp.names << endl
<< "Age: " << temp.other << endl << endl;
MyFile.read ( ( char* ) &temp, sizeof ( Student ) );
}
cout << endl << "Press any key to continue back to main menu" << endl;
getch();
clrscr();
mainMenu();
MyFile.close();
}
//------------------------------------------------------------------------------
void createFile()
{
if( ! MyFile )
{
MyFile.close();
MyFile.open(FILE_PATH, ios::binary | ios::in | ios::out);
}
if ( ! MyFile )
{
cout << "File Error: File does not exist. Creating new file..."
<< endl << "Click to continue to main menu...";
getch();
clrscr();
}
}
//------------------------------------------------------------------------------
|