The world is currently online!


Welcome to Emps-World!

Register now to gain access to all of our forum features. Once registered and logged in, you will be able to create topics, post replies, send private messages, manage your profile, chat with other players in the shoutbox and much more. Once you sign in, this message will disappear.



Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Bluestorm

Pages: 1 2 3 4 5 6 7 8 9
91
Screenshots / Re: Emps-World Meme Center
« on: January 09, 2018, 08:13:26 pm »
RAVIOLI IS BACK
The following users liked this post: Hugo Terwiss, Fund Kakare, For Freedom, Jandar, Saif Nawaf, Bluesunrunne, Ravioli

92
Screenshots / Re: Emps-World Meme Center
« on: January 07, 2018, 10:03:50 pm »

93
Goals & Achievements / Re: #1 / 250M rc / Next Goal
« on: December 30, 2017, 09:48:15 pm »
Congratulations o.O
The following users liked this post: Skillz Purez

95
Screenshots / Re: Emps-World Meme Center
« on: December 26, 2017, 09:33:42 pm »
Charr is coming back!
The following users liked this post: Saif Nawaf, Bluesunrunne

96
Screenshots / Re: Emps-World Meme Center
« on: December 21, 2017, 04:25:52 pm »
The following users liked this post: Crusher123, Iron 69, Bluesunrunne, Ravioli

97
Screenshots / Re: Emps-World Meme Center
« on: December 19, 2017, 08:54:46 pm »

98
Events / Re: Secret Santa 2017.
« on: December 17, 2017, 06:21:58 pm »
it's impossible to find you online.. anyone else i could give my gift to?
skillz purez or jp
The following users liked this post: Skillz Purez, S Clegane

99
Screenshots / Re: Emps-World Meme Center
« on: November 30, 2017, 09:25:33 pm »

100
Off-Topic / Re: Karel appreciation thread
« on: September 07, 2017, 08:38:54 pm »
The following users liked this post: Someone12116, Jandar, S Clegane

101
Goals & Achievements / Re: Ironman progress - MAXED
« on: August 10, 2017, 03:35:49 pm »
Congratulations mate !!!!
The following users liked this post: Iron Corne

102
Screenshots / Re: Emps-World Meme Center
« on: June 21, 2017, 07:55:06 pm »
The following users liked this post: Jp, Kaner, Drugs, 66destroyer3, Division66, Junkz, Iron Corne

103
Goals & Achievements / Re: 1B XP - Ironman mode
« on: May 05, 2017, 11:22:27 am »
Noice mate
The following users liked this post: Iron Corne

104
Off-Topic / Re: How to win more stakes!!!
« on: April 09, 2017, 11:05:59 am »
Worked for me thanks!
The following users liked this post: Someone12116

105
Computers and Technology / Re: C code.
« on: April 08, 2017, 06:49:56 pm »
Use this function to check if a number is prime or not:

int is_prime(int num)
{
     if (num <= 1) return 0;
     if (num % 2 == 0 && num > 2) return 0;
     for(int i = 3; i < num / 2; i+= 2)
     {
         if (num % i == 0)
             return 0;
     }
     return 1;
}

If you looking for faster code use sqrt(num) instead of num/2 in the loop.
The following users liked this post: Ameer

Pages: 1 2 3 4 5 6 7 8 9