Ginataang Aso
Batna, Algeria
rgb :steamhappy:

Player of CSGO FaZe Clan PH

-console -novid -high -windowed -noborder fps_max [400] -tickrate 128 +cl_forcepreload 1 -nod3d9ex1

net_graph 1;
net_graphheight 250;
mat_monitorgamma 1.6;
cl_radar_always_centered 0; cl_radar_scale 0.6;
snd_headphone_pan_exponent 50;
cl_disablefreezecam 1;
bindtoggle v voice_enable;
rate 128000;
cl_updaterate 128;
cl_cmdrate 128;
cl_interp 0;
cl_interpolate 1;
cl_interp_ratio 1;
cl_predict 1;
cl_lagcompensation 1;
+cl_show_team_equipment;
bind shift "+speed; r_cleardecals";
bind j +jumpthrow; alias +jumpthrow "+jump; -attack"; alias -jumpthrow -jump;
bind f3 "buy flashbang; buy smokegrenade; buy hegrenade; buy flashbang";
bindtoggle t cl_righthand;
bind "x" "use weapon_c4;drop";
rgb :steamhappy:

Player of CSGO FaZe Clan PH

-console -novid -high -windowed -noborder fps_max [400] -tickrate 128 +cl_forcepreload 1 -nod3d9ex1

net_graph 1;
net_graphheight 250;
mat_monitorgamma 1.6;
cl_radar_always_centered 0; cl_radar_scale 0.6;
snd_headphone_pan_exponent 50;
cl_disablefreezecam 1;
bindtoggle v voice_enable;
rate 128000;
cl_updaterate 128;
cl_cmdrate 128;
cl_interp 0;
cl_interpolate 1;
cl_interp_ratio 1;
cl_predict 1;
cl_lagcompensation 1;
+cl_show_team_equipment;
bind shift "+speed; r_cleardecals";
bind j +jumpthrow; alias +jumpthrow "+jump; -attack"; alias -jumpthrow -jump;
bind f3 "buy flashbang; buy smokegrenade; buy hegrenade; buy flashbang";
bindtoggle t cl_righthand;
bind "x" "use weapon_c4;drop";
Currently Offline
Comments
bianxa 29 Oct, 2017 @ 8:01pm 
}
else if(choice==2)//if you choose 2 DISPLAY
{
system("cls");
for(int y=0;myHigh>y;y++)//display all elements stored in the array
{
cout<<r[y]<<endl<<endl;
}
cout<<endl<<endl;
goto BEGIN;// go to the beginning
}
else if(choice==3)//if you choose 3 EXIT
{
return 0;
}
else //wrong choice
{
goto BEGIN;//go to the beginning
cout<<"\nWrong Choice\n\n";
}


system("pause");
}

bianxa 29 Oct, 2017 @ 8:01pm 
#include<iostream>
using namespace std;

int r[6]={1,2,3,4,5,6}; //The array being stored
int CAP=6; //Capacity of the Array
int myHigh=6; //Highest Element in the Array
int choice;

int main()
{
BEGIN: //Designate the Beginning
cout<<"Stack with Capacity of 6\n\n";
cout<<"[1]TOP\n[2]DISPLAY\n[3]EXIT\n";
cout<<"Your Choice: ";cin>>choice;

if(choice==1) //if you choose 1 TOP
{
system("cls");
cout<<endl<<endl;
if(myHigh==0) //if highest element is 0
{
system("cls");
cout<<"Your Stack is Empty\n\n"<<endl; //Stack is empty
goto BEGIN; //goto to the beginning
}
else
{
cout<<"TOP is "<<r[myHigh-1];//array index begins with 0
cout<<endl<<endl;
goto BEGIN;// go to beginning
}