Assignment

Using C++ programming, design and develop medical and engineering applications.

The project should use the files to store data. The program must consist of 9 modules, some of the modules examples are Add module, Delete module, Search Module, Update module, Save module, Payment module, View module, Penalty module, Discount module and etc.

Product documentation. Produce the product documentation based on the modules you are developing.

Structure Chart
ScreenShots
Test plans and results
Specialty & Limitation of the program
Self-Review and future improvement
Grammar and spelling
Development Product

Complexities of the project/design
Fully functional/partially functional or not working?
Design specification
Verification and validation check (test cases)
Used modularity approach?
Function
Array
File handling
Calculation
Last edited on
You haven't asked a question.

We aren't a homework service, but if you show some effort, then we can help you along the way.
http://cplusplus.com/doc/tutorial/
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include <iostream>
#include <cctype>
#include <limits>

int main()
{
   std::cout << "Do you want someone to do all the work for you? ";
   char answer{ };
   std::cin >> answer;

   std::cin.ignore(std::numeric_limits<std::streamsize>::max(), '\n');

   if (std::toupper(answer) == 'Y' ) { std::cout << "Post it in the Jobs section.\n"; }

   else { std::cout << "Show what you have coded so far.\n"; }

   std::cout << "Good luck.\n";
}
Topic archived. No new replies allowed.