Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
~2K People Reached
Favorite Forums
Favorite Tags
c++ x 25
Member Avatar for eng hassan

I am trying to learn how to struct a network hardware...I have been reading and watching videos on the internet but i cant understand how to Configure the interfaces of with the appropriate IP address and activate the interfaces and how to Configure Vlan1 interface of each switch with IP …

Member Avatar for JorgeM
0
98
Member Avatar for eng hassan

[TEX]This is a game i have made, but I have some problems in the breed & eat functions I dont know what is the problem & i really need help. the code works probably but the prey & the predator doesnt breed or eat,,,ANY HELP PLZZ[/TEX] [CODE]#include <iostream> #include<windows.h> #include<conio.h> …

Member Avatar for raptr_dflo
0
1K
Member Avatar for eng hassan

can anyone tell me how can i represent a global function & a ( struct ) in a UML diagram????

Member Avatar for eng hassan
0
81
Member Avatar for eng hassan

HI everyone,,,i am a beginner in c++ & i have an a assignment that i cant even start & i need in advice that i can get so plzzzzzzz help,,, the assignment is about a game [B][U]The Predator‐Prey game [/U][/B]is a simple board game where a set of predators and …

Member Avatar for eng hassan
0
111
Member Avatar for eng hassan

HIII!!! i need to know how to make a random movement for a character?? [CODE]#include <iostream> #include <conio.h> #include <windows.h> using namespace std; char board[20][20]; void setBoard () { for (int j=0; j<20; j++) { board[0][j] = 219; board[19][j] = 219; } for (int i=0; i<20; i++) { board[i][0] = …

Member Avatar for eng hassan
0
575
Member Avatar for eng hassan

[CODE]#include <iostream> #include <conio.h> #include <windows.h> using namespace std; char board[20][20]; void setBoard () { for (int j=0; j<20; j++) { board[0][j] = 219; board[19][j] = 219; } for (int i=0; i<20; i++) { board[i][0] = 219; board[i][19] = 219; } for (int j=1; j<19; j++) { for (int i=1; …

Member Avatar for eng hassan
0
90
Member Avatar for eng hassan

[CODE]// Project !!!.cpp : Defines the entry point for the console application. // #include<windows.h> #include <iostream> #include <conio.h> using namespace std; class Predator {private: int x; int y; char z; char board[20][20]; int count1; int count2; public: Predator(){ for (int j=0; j<20; j++) { board[0][j] = '@'; board[19][j] = '@'; …

Member Avatar for eng hassan
0
132
Member Avatar for eng hassan

i want the charcter i display in the grid to move upwards when i press 'w' & downwards when i press's' & right when in press'd' & left when i press 'a',,,,i have written a code that doesnt work can anyone help me to find out what is the wrong …

Member Avatar for eng hassan
0
110