Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
5
Posts with Downvotes
4
Downvoting Members
4
2 Commented Posts
0 Endorsements
~1K People Reached
Favorite Forums
Favorite Tags
c++ x 25
Member Avatar for fadi_1234
Member Avatar for fadi_1234
Member Avatar for fadi_1234

this game is between a player and computer can you make it between two player please ?

Member Avatar for VernonDozier
0
241
Member Avatar for fadi_1234

[CODE]#include <ctime> #include <cstdlib> bool winner = false; winner = true; srand((unsigned)time(NULL)); comp_choice = rand() % 3; system ("PAUSE"); return 0; } [/CODE] How to transform this idea or this codes to simple codes in IOSTREAM Library

Member Avatar for rubberman
0
102
Member Avatar for fadi_1234

can anyone explain to me : what is counter++ and ++counter and the different between them ? and static_cast <type_id> (expression) and setiosflags ( ios::fixed | ios::showpoint Thanks

Member Avatar for fadi_1234
0
85
Member Avatar for fadi_1234

can anyone explain why the output of this code is 110 ? [CODE]// Assignment 1-Body Mass Index Calculator #include <iostream> //allows program to output data to the screen using namespace std; //function main begins program execution int main() { int total=0; for (int number =2;number<=20;number+=2) total +=number; cout<<"Sum Is"<<total<<endl; return …

Member Avatar for veda&&
0
89
Member Avatar for fadi_1234
Member Avatar for fadi_1234
0
141
Member Avatar for fadi_1234

how can i make table like this : For example: Fadi recommendattion ----- ---------------- 1212 you must at least gain :1kg if fadi>1212 you must at least gain 1 kg how to make a table like that in c++ and i want to put the result of if in recommendation …

Member Avatar for fadi_1234
0
274