Latest topics
» Omg this server with the website is still alive :oby Razor Tue Nov 19, 2024 10:17 pm
» [Solved] Help & Support
by VK.Angel.OfDeath Thu Oct 24, 2024 7:02 pm
» [Solved] reset password
by VK.Angel.OfDeath Thu Oct 24, 2024 6:58 pm
» [Accepted] Report - Abanoub^
by VK.Angel.OfDeath Thu Oct 24, 2024 6:42 pm
» [Accepted] Unban appeal - hasan
by D4rKR420R Fri Oct 18, 2024 10:06 pm
» [Solved] Report - BelondiOscar
by SJIsNotHere Fri Oct 11, 2024 1:21 pm
» [Solved] Geogeo - Stats Transfer
by SJIsNotHere Tue Oct 01, 2024 5:50 pm
» [Solved] Kindly Re-solve it
by SJIsNotHere Wed Sep 25, 2024 9:55 am
» [Solved] Geogeo - Stats Transfer
by SJIsNotHere Wed Sep 25, 2024 8:10 am
» Matija_Todorovic returns after 3 years of absence
by UmaR Sun Sep 01, 2024 5:55 am
» [Solved] Signature^-Stats transfer
by UmaR Wed Aug 21, 2024 2:38 pm
» [Denied] Admin Application - MK14
by UmaR Fri Aug 16, 2024 8:44 pm
» [Solved] Reset my password pls
by VK.Angel.OfDeath Wed Aug 14, 2024 6:44 am
» Old member back from the dead
by Neptune Mon Aug 12, 2024 9:39 pm
» Vice War X Gameplay | BadDiamondArtz VCMP
by UmaR Thu Jul 18, 2024 10:00 am
» [Solved] RESET PASSWORD
by UmaR Fri Jul 12, 2024 3:29 pm
» [Solved]Transfer Application - Hazard
by SJIsNotHere Wed Jul 03, 2024 10:56 am
» DARKRAZOR RESPONDE MI MENSAJE!!!
by Veterano789 Wed Jul 03, 2024 1:59 am
» Vice War X: The Starfish Showdown
by =FF=B00M_B00M^ Thu Jun 27, 2024 6:17 pm
» Fatal Force - F2
by Mr.Moon Wed Jun 26, 2024 7:18 am
» Stat Transfer Application - SuFyastiC
by D4rKR420R Tue Jun 04, 2024 10:07 pm
» [Accepted] Unban Appeal
by VK.Angel.OfDeath Sun Mar 31, 2024 8:29 am
» [Solved] Password Reset
by VK.Angel.OfDeath Sat Mar 23, 2024 9:32 pm
» Ramadan Mubarak in Advance
by Shafin Sat Mar 23, 2024 1:52 pm
» Illegal Immigration | Old Memories | 2017
by ilemius Fri Feb 09, 2024 5:25 pm
» VKs and VCMP Previews
by SJIsNotHere Sat Jan 20, 2024 1:51 pm
» The Resurgence 4th Year of Anniversary!
by Ninja Tue Jan 16, 2024 10:30 am
» [Solved]Stats Transfer application - Shado[W]^
by SJIsNotHere Mon Nov 27, 2023 5:06 pm
» Hi to all my good friends
by VK.Angel.OfDeath Sat Nov 18, 2023 9:04 am
» [Closed] Admin Application - F2.Ninja
by VK.Angel.OfDeath Sat Nov 18, 2023 8:49 am
Top posters
ЧК. (8555) | ||||
VK.Angel.OfDeath (6465) | ||||
=SdS=KrlozZ... (6433) | ||||
D4rKR420R (5473) | ||||
=KF=Thunder^ (5405) | ||||
Pavonis (5197) | ||||
SJIsNotHere (4432) | ||||
Emma (4261) | ||||
Vipe[R] (3756) | ||||
47. (3705) |
Statistics
We have 1978 registered usersThe newest registered user is kodaklyve
Our users have posted a total of 217905 messages in 16831 subjects
Most Viewed Topics
[Danger]Programmer's Only
+8
KAKAN
EK.CrystalBlue
=KF=Thunder^
Vipe[R]
Lancer_Blaze
=SdS=KrlozZ...
D.E.[[V]].I.L
Lahhami^
12 posters
Page 1 of 1
[Danger]Programmer's Only
Hellow Guy's , programmer's supose to realize/know What did this 2 program's do
let's see who can show what did the easy/hard code print on screen .
who knew c++/c# Can Solve it as well .
Easy :
Here is the code :
#include'<'stdio.h'>'
void main()
{
int num ,sum=0;
printf("enter random Number :");
scanf_s("%d", &num); // input
while(num!=0)
{
sum + = (num % 10) ;
num/=10;
}
printf("sum : %d \n ",sum);
printf("[You must be registered and logged in to see this link.]\n ");
------------------------------------------------------------------
Hard :
Here is the code :
#include'<'stdio.h'>'
#include'<'math.h'>'
void main()
{
int num,tmp,c=0,sum=0;
double;
printf("Enter Num :");
scanf_s("%d",&num);
tmp=num;
while(num!=-1)
{
while(tmp)
{ c++; tmp/=10; } //ספרות
tmp=num;
while(tmp)
{ sum+=pow((double)(tmp%10),c) ; tmp/=10; } // סכום
if(sum==num)
printf("Yes , he is armstrong\n");
else
printf("no , he is'nt armstrong\n"); // בדיקה
printf("Enter Num(To end input 30) :");
scanf_s("%d",&num);
tmp=num;
sum=0;c=0;
}
Note : this code written by me and work's as well , i hope to find some nerd here , if someOne Knew what Hard Program do and explain then i give him cash 7m For sure ! .
Regard's
Lahham^
Chief Of Islam Community
[You must be registered and logged in to see this image.]
_____________________________________________________________
let's see who can show what did the easy/hard code print on screen .
who knew c++/c# Can Solve it as well .
Easy :
Here is the code :
#include'<'stdio.h'>'
void main()
{
int num ,sum=0;
printf("enter random Number :");
scanf_s("%d", &num); // input
while(num!=0)
{
sum + = (num % 10) ;
num/=10;
}
printf("sum : %d \n ",sum);
printf("[You must be registered and logged in to see this link.]\n ");
------------------------------------------------------------------
Hard :
Here is the code :
#include'<'stdio.h'>'
#include'<'math.h'>'
void main()
{
int num,tmp,c=0,sum=0;
double;
printf("Enter Num :");
scanf_s("%d",&num);
tmp=num;
while(num!=-1)
{
while(tmp)
{ c++; tmp/=10; } //ספרות
tmp=num;
while(tmp)
{ sum+=pow((double)(tmp%10),c) ; tmp/=10; } // סכום
if(sum==num)
printf("Yes , he is armstrong\n");
else
printf("no , he is'nt armstrong\n"); // בדיקה
printf("Enter Num(To end input 30) :");
scanf_s("%d",&num);
tmp=num;
sum=0;c=0;
}
Note : this code written by me and work's as well , i hope to find some nerd here , if someOne Knew what Hard Program do and explain then i give him cash 7m For sure ! .
Regard's
Lahham^
Chief Of Islam Community
[You must be registered and logged in to see this image.]
_____________________________________________________________
Last edited by [EK]KillerLaham on Tue Dec 13, 2016 4:17 pm; edited 6 times in total
Lahhami^- Legendary Member
- Gender :
Posts : 1250
Points : 1677
Reputation : 2
Join date : 2016-08-06
Age : 29
Location : Opssi World!
Re: [Danger]Programmer's Only
Someone tag VK.Vampire please xDDD
D.E.[[V]].I.L- Ultra Legendary
-
Gender :
Posts : 3134
Points : 3674
Reputation : 18
Join date : 2014-09-14
Age : 22
Location : Unknown.
Re: [Danger]Programmer's Only
omg 7m xd
=SdS=KrlozZ...- Ultra Legendary
- Gender :
Posts : 6433
Points : 7855
Reputation : 103
Join date : 2016-02-13
Age : 26
Location : Here >:)
Re: [Danger]Programmer's Only
Maybe 7u7Lancer_Blaze wrote:In real??lKrlozZl wrote:omg 7m xd
=SdS=KrlozZ...- Ultra Legendary
- Gender :
Posts : 6433
Points : 7855
Reputation : 103
Join date : 2016-02-13
Age : 26
Location : Here >:)
Re: [Danger]Programmer's Only
D.E.[[V]].I.L wrote:Someone tag VK.Vampire please xDDD
Lol No , if on real then will be converted to 7$ . but First Solve then you think about Real/Fake .lKrlozZl wrote:Maybe 7u7Lancer_Blaze wrote:In real??lKrlozZl wrote:omg 7m xd
You can Tag nerd's Also !
Lahhami^- Legendary Member
- Gender :
Posts : 1250
Points : 1677
Reputation : 2
Join date : 2016-08-06
Age : 29
Location : Opssi World!
Re: [Danger]Programmer's Only
Zeyad per0 programmer vampy is good as well
Vipe[R]- Ultra Legendary
- Gender :
Posts : 3756
Points : 4637
Reputation : 5
Join date : 2016-02-29
Age : 21
Location : Near My Sweet Viper Snakessssss!!!!!
Re: [Danger]Programmer's Only
Well, I guess only 1 nerd can solve this shit.
That nerd= KAKAN xD
That nerd= KAKAN xD
=KF=Thunder^- Ultra Legendary
- Gender :
Posts : 5405
Points : 6118
Reputation : 47
Join date : 2014-08-18
Age : 23
Location : United Kingdom
Re: [Danger]Programmer's Only
In the hard one it do some special math on the number you provided, and if it match with num it says 'yes he is armstrong' otherwise it say 'no he is 'nt armstrong'
EK.CrystalBlue- Deputy Chief of the Community
-
Posts : 3621
Points : 4218
Reputation : 28
Join date : 2012-10-31
Age : 31
Location : I am CRYSTAL u never found me!!!!!
Re: [Danger]Programmer's Only
Its pretty much a mathematical shit.=KF=Thunder^ wrote:Well, I guess only 1 nerd can solve this shit.
That nerd= KAKAN xD
I didn't even take a look at the 'hard code' after seeing the easy one, because I knew it would be maths related.
And too, I don't know C++. Ask angel instead.
KAKAN- Ultra Legendary
- Gender :
Posts : 3466
Points : 4011
Reputation : 16
Join date : 2014-09-28
Age : 21
Location : World
Re: [Danger]Programmer's Only
Tag This nerd pls or i leave pls gang pls xD=KF=Thunder^ wrote:Well, I guess only 1 nerd can solve this shit.
That nerd= KAKAN xD
if you solve easy One then you can solve hard by some real paper , try number's and check what did the program do , cmon you scripter dude , Go Ahead! . as you mathematician also pls xDEK.CrystalBlue wrote:In the hard one it do some special math on the number you provided, and if it match with num it says 'yes he is armstrong' otherwise it say 'no he is 'nt armstrong'
Regard's
Lahham^
Chief Of Islam Community
[You must be registered and logged in to see this image.]
_____________________________________________________________
Last edited by [EK]KillerLaham on Tue Dec 13, 2016 6:53 pm; edited 1 time in total
Lahhami^- Legendary Member
- Gender :
Posts : 1250
Points : 1677
Reputation : 2
Join date : 2016-08-06
Age : 29
Location : Opssi World!
Re: [Danger]Programmer's Only
Easy one bery simple pls , not serious math pls , and sorry for double posting pls xDKAKAN wrote:Its pretty much a mathematical shit.=KF=Thunder^ wrote:Well, I guess only 1 nerd can solve this shit.
That nerd= KAKAN xD
I didn't even take a look at the 'hard code' after seeing the easy one, because I knew it would be maths related.
And too, I don't know C++. Ask angel instead.
Regard's
Lahham^
Chief Of Islam Community
[You must be registered and logged in to see this image.]
_____________________________________________________________
Lahhami^- Legendary Member
- Gender :
Posts : 1250
Points : 1677
Reputation : 2
Join date : 2016-08-06
Age : 29
Location : Opssi World!
Re: [Danger]Programmer's Only
[EK]KillerLaham wrote:Hellow Guy's , programmer's supose to realize/know What did this 2 program's do
let's see who can show what did the easy/hard code print on screen .
who knew c++/c# Can Solve it as well .
Easy :
Here is the code :
#include'<'stdio.h'>'
void main()
{
int num ,sum=0;
printf("enter random Number :");
scanf_s("%d", &num); // input
while(num!=0)
{
sum + = (num % 10) ;
num/=10;
}
printf("sum : %d \n ",sum);
printf("[You must be registered and logged in to see this link.]\n ");
------------------------------------------------------------------
Hard :
Here is the code :
#include'<'stdio.h'>'
#include'<'math.h'>'
void main()
{
int num,tmp,c=0,sum=0;
double;
printf("Enter Num :");
scanf_s("%d",&num);
tmp=num;
while(num!=-1)
{
while(tmp)
{ c++; tmp/=10; } //ספרות
tmp=num;
while(tmp)
{ sum+=pow((double)(tmp%10),c) ; tmp/=10; } // סכום
if(sum==num)
printf("Yes , he is armstrong\n");
else
printf("no , he is'nt armstrong\n"); // בדיקה
printf("Enter Num(To end input 30) :");
scanf_s("%d",&num);
tmp=num;
sum=0;c=0;
}
Note : this code written by me and work's as well , i hope to find some nerd here , if someOne Knew what Hard Program do and explain then i give him cash 7m For sure ! .
Regard's
Lahham^
Chief Of Islam Community
[You must be registered and logged in to see this image.]
_____________________________________________________________
Hard:
I don't know C++ but I've used many scripting langauges. In the first while loop you're checking how many digits there are in a number. For example if you type in 6743 you will get the answer c = 4.
In the second while loop you're calculating the sum = x0^c + x1^c .... + xn^c. Where the x's are the different digits in your number.
Then in the final step you're saying that if sum = num it's an Armstrong number, if not then it's not an Armstrong number. I don't know what an Armstrong number is, but it's probably what's calculated here lol.
Maybe I have forgotten what (double) means but, doesn't it mean that you convert tmp%10 to double. Why would you want to do that? It's supposed to be an integer.
- Code:
while(num!=-1)
{
while(tmp)
{
c++;
tmp/=10;
} //ספרות
tmp=num;
while(tmp)
{
sum+=pow((double)(tmp%10),c) ;
tmp/=10;
} // סכום
if(sum==num)
printf("Yes , he is armstrong\n");
else
printf("no , he is'nt armstrong\n"); // בדיקה
printf("Enter Num(To end input 30) :");
scanf_s("%d",&num);
tmp=num;
sum=0;c=0;
}
Re: [Danger]Programmer's Only
Finally i found a nerd programmer here ! , clear you knew what am talking about , Armstrong number is number ( N digit's ) equal's to sum of N power to his digit's , such as :Chuck Norris wrote:
Hard:
I don't know C++ but I've used many scripting langauges. In the first while loop you're checking how many digits there are in a number. For example if you type in 6743 you will get the answer c = 4.
In the second while loop you're calculating the sum = x0^c + x1^c .... + xn^c. Where the x's are the different digits in your number.
Then in the final step you're saying that if sum = num it's an Armstrong number, if not then it's not an Armstrong number. I don't know what an Armstrong number is, but it's probably what's calculated here lol.
Maybe I have forgotten what (double) means but, doesn't it mean that you convert tmp%10 to double. Why would you want to do that? It's supposed to be an integer.
the num 153 is Armstrong num , why ?
1^3 + 5^3 + 3^3 = 1+125+27= 153
also num 54748 is Armstrong num , why ?
5^5 + 4^5 + 7^5 + 4^5 +8^5 =54748
i think you understand the significance of Armstrong num .
and about "converting To Double" , its because i use " [You must be registered and logged in to see this link.] '<'math.h'>' whitch included a function that recieved 2 parameter , One Double and one Interger Although i can make funtion for power recieved 2 interger's easily , but i already got one , dont forget it is sensitive language , We have to Observance about parameter's that function recieved (pow Function) .
its right that i mention "hard" but its nothing Compared with my knowledge and experience i have , i knew more harder than this x10 , if you ready for hard qsk then told me .
lastly , you Got 7m ! even i know you dont need it . pm if you want it lol . i never saw you joined server .
Lahhami^- Legendary Member
- Gender :
Posts : 1250
Points : 1677
Reputation : 2
Join date : 2016-08-06
Age : 29
Location : Opssi World!
Re: [Danger]Programmer's Only
[EK]KillerLaham wrote:Finally i found a nerd programmer here ! , clear you knew what am talking about , Armstrong number is number ( N digit's ) equal's to sum of N power to his digit's , such as :Chuck Norris wrote:
Hard:
I don't know C++ but I've used many scripting langauges. In the first while loop you're checking how many digits there are in a number. For example if you type in 6743 you will get the answer c = 4.
In the second while loop you're calculating the sum = x0^c + x1^c .... + xn^c. Where the x's are the different digits in your number.
Then in the final step you're saying that if sum = num it's an Armstrong number, if not then it's not an Armstrong number. I don't know what an Armstrong number is, but it's probably what's calculated here lol.
Maybe I have forgotten what (double) means but, doesn't it mean that you convert tmp%10 to double. Why would you want to do that? It's supposed to be an integer.
the num 153 is Armstrong num , why ?
1^3 + 5^3 + 3^3 = 1+125+27= 153
also num 54748 is Armstrong num , why ?
5^5 + 4^5 + 7^5 + 4^5 +8^5 =54748
i think you understand the significance of Armstrong num .
and about "converting To Double" , its because i use " [You must be registered and logged in to see this link.] '<'math.h'>' whitch included a function that recieved 2 parameter , One Double and one Interger Although i can make funtion for power recieved 2 interger's easily , but i already got one , dont forget it is sensitive language , We have to Observance about parameter's that function recieved (pow Function) .
its right that i mention "hard" but its nothing Compared with my knowledge and experience i have , i knew more harder than this x10 , if you ready for hard qsk then told me .
lastly , you Got 7m ! even i know you dont need it . pm if you want it lol . i never saw you joined server .
I will take it if Angel doesn't want it pls, I think I deserve it for being Shaykh pls xDD
=KF=Thunder^- Ultra Legendary
- Gender :
Posts : 5405
Points : 6118
Reputation : 47
Join date : 2014-08-18
Age : 23
Location : United Kingdom
Re: [Danger]Programmer's Only
Sorry to say but I am like (HOOO MOI GAAD, what the Father F***ing F*** is this shit?)
SuFyastiC- Ultra Legendary
- Gender :
Posts : 2125
Points : 2790
Reputation : 20
Join date : 2013-07-04
Age : 27
Location : Karachi,Pakistan
Re: [Danger]Programmer's Only
=KF=Thunder^ wrote:[EK]KillerLaham wrote:Finally i found a nerd programmer here ! , clear you knew what am talking about , Armstrong number is number ( N digit's ) equal's to sum of N power to his digit's , such as :Chuck Norris wrote:
Hard:
I don't know C++ but I've used many scripting langauges. In the first while loop you're checking how many digits there are in a number. For example if you type in 6743 you will get the answer c = 4.
In the second while loop you're calculating the sum = x0^c + x1^c .... + xn^c. Where the x's are the different digits in your number.
Then in the final step you're saying that if sum = num it's an Armstrong number, if not then it's not an Armstrong number. I don't know what an Armstrong number is, but it's probably what's calculated here lol.
Maybe I have forgotten what (double) means but, doesn't it mean that you convert tmp%10 to double. Why would you want to do that? It's supposed to be an integer.
the num 153 is Armstrong num , why ?
1^3 + 5^3 + 3^3 = 1+125+27= 153
also num 54748 is Armstrong num , why ?
5^5 + 4^5 + 7^5 + 4^5 +8^5 =54748
i think you understand the significance of Armstrong num .
and about "converting To Double" , its because i use " [You must be registered and logged in to see this link.] '<'math.h'>' whitch included a function that recieved 2 parameter , One Double and one Interger Although i can make funtion for power recieved 2 interger's easily , but i already got one , dont forget it is sensitive language , We have to Observance about parameter's that function recieved (pow Function) .
its right that i mention "hard" but its nothing Compared with my knowledge and experience i have , i knew more harder than this x10 , if you ready for hard qsk then told me .
lastly , you Got 7m ! even i know you dont need it . pm if you want it lol . i never saw you joined server .
I will take it if Angel doesn't want it pls, I think I deserve it for being Shaykh pls xDD
Jajaja xd, ye give it to thunder pls , thunde ris angel wife pls xd, they share the money pls, xd.
thunder my secretly love pls, u share the cash with me pls, u are my secretly love pls xd, dont tell to anyone pls xd
=SdS=KrlozZ...- Ultra Legendary
- Gender :
Posts : 6433
Points : 7855
Reputation : 103
Join date : 2016-02-13
Age : 26
Location : Here >:)
Re: [Danger]Programmer's Only
none can solve if anyone i will give him 200k
[FS]Jude(A)- Veteran Member
- Gender :
Posts : 393
Points : 536
Reputation : 1
Join date : 2016-05-15
Age : 23
Location : In proploc 161
Re: [Danger]Programmer's Only
Armstrong number is not in my syllabus, so... but I was correct, its related to maths
And, angel loves maths xd
And, angel loves maths xd
KAKAN- Ultra Legendary
- Gender :
Posts : 3466
Points : 4011
Reputation : 16
Join date : 2014-09-28
Age : 21
Location : World
Re: [Danger]Programmer's Only
Learn programming and you'll understand it.VK.SuFy wrote:Sorry to say but I am like (HOOO MOI GAAD, what the Father F***ing F*** is this shit?)
Vipe[R]- Ultra Legendary
- Gender :
Posts : 3756
Points : 4637
Reputation : 5
Join date : 2016-02-29
Age : 21
Location : Near My Sweet Viper Snakessssss!!!!!
Re: [Danger]Programmer's Only
if pony = rainbow dash
write rainbow dash is best pony
is that a good script ?
i dont know anything about scripting xD
write rainbow dash is best pony
is that a good script ?
i dont know anything about scripting xD
Emma- Event Staff
- Gender :
Posts : 4261
Points : 6189
Reputation : 81
Join date : 2013-04-25
Age : 19
Location : Next room to angel.Ofnoob (i am Rainbow)
Re: [Danger]Programmer's Only
Sure, it is.Rainbow Dash wrote:if pony = rainbow dash
write rainbow dash is best pony
is that a good script ?
i dont know anything about scripting xD
- Code:
namespace std;
int main(){
string pony = "rainbow dash";
if( pony == "rainbow dash" ) {
cout << "rainbow dash is the best pony.";
}
//Terminate the program.
return 0;
}
KAKAN- Ultra Legendary
- Gender :
Posts : 3466
Points : 4011
Reputation : 16
Join date : 2014-09-28
Age : 21
Location : World
Re: [Danger]Programmer's Only
Rainbow Dash wrote:if pony = rainbow dash
write rainbow dash is best pony
is that a good script ?
i dont know anything about scripting xD
Don't use this code or you will get a lot of bugs.
Guest- Guest
Re: [Danger]Programmer's Only
Error: expression expectedRainbow Dash wrote:if pony = rainbow dash
write rainbow dash is best pony
is that a good script ?
i dont know anything about scripting xD
EK.CrystalBlue- Deputy Chief of the Community
-
Posts : 3621
Points : 4218
Reputation : 28
Join date : 2012-10-31
Age : 31
Location : I am CRYSTAL u never found me!!!!!
Re: [Danger]Programmer's Only
Error 404: Unknown command.Rainbow Dash wrote:if pony = rainbow dash
write rainbow dash is best pony
is that a good script ?
i dont know anything about scripting xD
Vipe[R]- Ultra Legendary
- Gender :
Posts : 3756
Points : 4637
Reputation : 5
Join date : 2016-02-29
Age : 21
Location : Near My Sweet Viper Snakessssss!!!!!
Re: [Danger]Programmer's Only
Under Proccessing pls xD=KF=Thunder^ wrote:
I think I deserve it for being Shaykh pls xDD
Math is every think dude xD , my first 2 year's on univ including math only pls xD ,KAKAN wrote:Armstrong number is not in my syllabus, so... but I was correct, its related to maths
And, angel loves maths xd
,also armstrong number not on chuck/angel syllabus , but he wrote what he did even he dont knew what armstrong number .
tip : start to give example's on paper and it will help's .
Rainbow Dash wrote:if pony = rainbow dash
write rainbow dash is best pony
is that a good script ?
i dont know anything about scripting xD
Here is the code :
- Code:
include<stdio.h>
void main
{
char Pony[]={'r','a','i','n',' ' ,'d','a','s','h','/0'};
printf("rainbow dash is best pony and andri sux! ");
}
// KAKAN C#
// here we wrote Note's for programmer's
Lahhami^- Legendary Member
- Gender :
Posts : 1250
Points : 1677
Reputation : 2
Join date : 2016-08-06
Age : 29
Location : Opssi World!
Re: [Danger]Programmer's Only
[EK]KillerLaham wrote:Under Proccessing pls xD=KF=Thunder^ wrote:
I think I deserve it for being Shaykh pls xDDMath is every think dude xD , my first 2 year's on univ including math only pls xD ,KAKAN wrote:Armstrong number is not in my syllabus, so... but I was correct, its related to maths
And, angel loves maths xd
,also armstrong number not on chuck/angel syllabus , but he wrote what he did even he dont knew what armstrong number .
tip : start to give example's on paper and it will help's .Rainbow Dash wrote:if pony = rainbow dash
write rainbow dash is best pony
is that a good script ?
i dont know anything about scripting xD
Here is the code :
- Code:
include<stdio.h>
void main
{
char Pony[]={'r','a','i','n',' ' ,'d','a','s','h','/0'};
printf("rainbow dash is best pony and andri sux! ");
}
// KAKAN C#
// here we wrote Note's for programmer's
Try to increase your processing speed pls, by overclocking pls, I need the cash pls xDDD
=KF=Thunder^- Ultra Legendary
- Gender :
Posts : 5405
Points : 6118
Reputation : 47
Join date : 2014-08-18
Age : 23
Location : United Kingdom
Re: [Danger]Programmer's Only
=KF=Thunder^ wrote:[EK]KillerLaham wrote:Under Proccessing pls xD=KF=Thunder^ wrote:
I think I deserve it for being Shaykh pls xDDMath is every think dude xD , my first 2 year's on univ including math only pls xD ,KAKAN wrote:Armstrong number is not in my syllabus, so... but I was correct, its related to maths
And, angel loves maths xd
,also armstrong number not on chuck/angel syllabus , but he wrote what he did even he dont knew what armstrong number .
tip : start to give example's on paper and it will help's .Rainbow Dash wrote:if pony = rainbow dash
write rainbow dash is best pony
is that a good script ?
i dont know anything about scripting xD
Here is the code :
- Code:
include<stdio.h>
void main
{
char Pony[]={'r','a','i','n',' ' ,'d','a','s','h','/0'};
printf("rainbow dash is best pony and andri sux! ");
}
// KAKAN C#
// here we wrote Note's for programmer's
Try to increase your processing speed pls, by overclocking pls, I need the cash pls xDDD
u no secretly ignored my reply pls xd.
=SdS=KrlozZ...- Ultra Legendary
- Gender :
Posts : 6433
Points : 7855
Reputation : 103
Join date : 2016-02-13
Age : 26
Location : Here >:)
Similar topics
» [DANGER] Mathematicians only
» [Danger]GtaPlayer's Only
» Forum And Angel In A Great Danger
» [Danger]Pony Recognition - Unicorns
» [Danger]GtaPlayer's Only
» Forum And Angel In A Great Danger
» [Danger]Pony Recognition - Unicorns
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum