Click here to Skip to main content
15,892,005 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
I want the program on computer allocation (allotment) system in c++ . Like we all go to cyber cafe we have to fill up some entries and then we are given with a computer to the task and then the person charges money according to the time computer used.

Thanks in advance

What I have tried:

Computer Allocation (allotment) System
I want the program on computer allocation (allotment) system in c++ . Like we all go to cyber cafe we have to fill up some entries and then we are given with a computer to the task and then the person charges money according to the time computer used.
1 page
Welcome to the new era cyber café
Press Any Key to continue

2 page
Please fill up the following entries
Name
Fathers name
Add
Contact no.
Press Any Key to continue
3 page
Do you want internet connection or Not?

Press Y for Yes
Press N for No
4 PAGE 
Rate list 
With internet connection
1 sec =10 paise
Without internet connection
1 sec=5 paise

5 Page 
Timer or stopwatch to calculate the time used 
6 Page 
Which computers Are free?
A LIST WILL APPEAR OF 10 COMP
USER WILL SELECT ONE COMP
7 page 
End of stopwatch or timer
Total time would be converted in seconds
8 page
Money to be paid
9
Another entry
Posted
Updated 19-Apr-17 8:07am
v2
Comments
[no name] 19-Apr-17 13:05pm    
Perhaps you meant to go to rentacoder.com or some such. No one here is going to write this project for you.

Quote:
I want the program on computer allocation (allotment) system in c++

We do not do your homework: it is set for a reason. It is there so that you think about what you have been told, and try to understand it. It is also there so that your tutor can identify areas where you are weak, and focus more attention on remedial action.

Try it yourself, you may find it is not as difficult as you think!

If you meet a specific problem, then please ask about that and we will do our best to help. But we aren't going to do it all for you!
 
Share this answer
 
Comments
Member 13137432 19-Apr-17 10:52am    
Can you help me by giving me basic idea about the program or some program similar to it.
OriginalGriff 19-Apr-17 11:07am    
No - this is *your* homework, not mine - and working out what you need to do is part of the task!

Sit down with paper and a pencil, and play with what you need to do: look at what data you need, and what needs to happen to it. That should give you a rough outline of what your application needs to do and how it needs to process things.
Member 13137432 19-Apr-17 12:29pm    
Computer Allocation (allotment) System
I want the program on computer allocation (allotment) system in c++ . Like we all go to cyber cafe we have to fill up some entries and then we are given with a computer to the task and then the person charges money according to the time computer used.
1 page
Welcome to the new era cyber café
Press Any Key to continue

2 page
Please fill up the following entries
Name
Fathers name
Add
Contact no.
Press Any Key to continue
3 page
Do you want internet connection or Not?

Press Y for Yes
Press N for No
4 PAGE
Rate list
With internet connection
1 sec =10 paise
Without internet connection
1 sec=5 paise

5 Page
Timer or stopwatch to calculate the time used
6 Page
Which computers Are free?
A LIST WILL APPEAR OF 10 COMP
USER WILL SELECT ONE COMP
7 page
End of stopwatch or timer
Total time would be converted in seconds
8 page
Money to be paid
9
Another entry
OriginalGriff 19-Apr-17 12:44pm    
Good. That's a reasonable start.
Now, get coding!
Member 13137432 19-Apr-17 12:51pm    
#include<iostream.h>
#include<conio.h>
main()
{
int m,s,comp[10],i;
cout<<"Enter your Name\n";
cout<<"Enter your Father's Name\n";
cout<<"enter the system no. out of 3";

for(int j=1;j<=i;j++)
{
cin>>comp
}
cout<<"\n\n\n\t\t\t A COUNTDOWN TIMER \n";
cout<<enter time in MINUTES here \t = \t";
cin>>m;
cout<<enter time in SECONDS here \t = \t";
cin>>s;
cout<<"\n\n\n\n\t press any key to start...!!!";
getch();
clrscr();
cout<<"\n\n\n\t\t\t A COUNTDOWN TIMER \n";
cout<<"\n\n\n\t\t TIME REMAINIG \n\n";
cout<<"\t mins: \t\t seconds: ";
for(int min=m;min>0;min--)
{
for(int sec=59;sec>=;sec--)
{
sleep(1);
cout<<"\r"<<min<<"\t"<<sec;
}
}
for(int rem=s;rem>=0;rem--)
{
cout<<"\r"<<min<<"\t"<<rem;
}
cout<<"\n\n ENDED ";
return 0;
}
Quote:
task and then the person charges money according to the time computer used.

I charge money dir this kind if service.

We do not do your HomeWork.
HomeWork is not set to test your skills at begging other people to do your work, it is set to make you think and to help your teacher to check your understanding of the courses you have taken and also the problems you have at applying them.
Any failure of you will help your teacher spot your weaknesses and set remedial actions.
So, give it a try, reread your lessons and start working. If you are stuck on a specific problem, show your code and explain this exact problem, we might help.

As programmer, your job is to create algorithms that solve specific problems and you can't rely on someone else to eternally do it for you, so there is a time where you will have to learn how to. And the sooner, the better.
When you just ask for the solution, it is like trying to learn to drive a car by having someone else training.
Creating an algorithm is basically finding the maths and make necessary adaptation to fit your actual problem.

The idea of "development" is as the word suggests: "The systematic use of scientific and technical knowledge to meet specific objectives or requirements." BusinessDictionary.com[^]
That's not the same thing as "have a quick google and give up if I can't find exactly the right code".
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900