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
~234 People Reached
Favorite Forums
Favorite Tags
c++ x 12
Member Avatar for Nabeel24

[code]#include <iostream> using namespace std; #include <iomanip> #include <string> int main() { string name; string number; double bonusContributed; const int FW = 10; double const ticketPrice = 5; int ticketsSold; double revenuePercentage; double moneyDistributed; double revenueGenerated, adminDeduction, balanceRaised; cout << "How many tickets were sold? "; cin >> ticketsSold; cin.ignore(); …

Member Avatar for jonsca
0
234