Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~5K People Reached
Favorite Forums
Favorite Tags
c++ x 6
Member Avatar for wenny86

this is my assignment question. You must implement a simulation program to model air traffic among a collection of airports, as discussed in class. There are two important extensions that will be made to the model. First, in addition to arriving aircraft using the runway, departing aircraft must also use …

Member Avatar for ArkM
0
2K
Member Avatar for wenny86

This is the code. I'm having problem in comparing the Now and arrival time(atime) of plane. To get the result the number of plane on the air. urgent.this code have to pass up on tuesday. thanks! [CODE]#include <iostream> #include <stdlib.h> #include <iomanip> #include <string> #include <cmath> using namespace std; int …

Member Avatar for VernonDozier
0
96
Member Avatar for wenny86

this is the one I tried.. but it just can store digit up to 9... I need to store large number. can anyone help me?? [code]#include <iostream> #include <assert.h> #include <cctype> #include <cstdlib> using namespace std; #if !defined STACK_H #define STACK_H const int maxStack = 100; class IStack { friend …

Member Avatar for siddhant3s
0
3K
Member Avatar for wenny86