Ok, I've got it.
It's true that a Web Service would be the best solution from the studied ones here, but I'm @ the beginning of Web programming and for now I'll remain on what I definitely know I can.
Whatever my choice would be, I'm thankful to you for assistance ;)
Giku Promitt
User Profile
Collapse
-
What programming language would best fit my kind of problem?
We received a task @ school to create a project for our winter session. My task is to make a program that would automize the ticket booking process in a cinema. Assuming that:- I want a friendly graphical interface for my program (meaning that I want to view the plan of audience room instead of the list of seats)
- My data will be kept in an .mdb or .accdb database
what programming language would best fit my kind of problem? I think I could... -
I wrote the following test program:
#include<iostre am.h>
#include<conio. h>
void main()
{ char c;
c=getch();
cout<<endl<<c;
getche(); }
Here are some results:
Left Arrow - K
Right Arrow - M
Up Arrow - H
Down Arrow - P
Delete Key - S
At <Enter> and <Space> pushing there was no any letter in cout, maybe...Leave a comment:
-
Getche - Enter key
I know that the following instructions:
char c;
c=getche();
...read a character. If I type, for example, 'g', then c=='g'. But what is equally c with if I press an arrow, the Enter key, the Del key etc.?
No activity results to display
Show More
Leave a comment: