Advertisement
Guest User

Space Heater

a guest
May 28th, 2014
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.79 KB | None | 0 0
  1. // I call this code space heater because it really warms up the room by doing pointless calculations.
  2. // It even has settings to change how much pointlessness is being calculated, and thus how much heat
  3. // is being generated. The actual correlation between setting and temperature is unknown, and it's
  4. // expected that it isn't even linear. But most people won't know the difference. For best results,
  5. // the setting should not exceed the number of cores your processor has.
  6. // For fun, it calculates prime numbers.
  7.  
  8. using System.Threading;
  9.  
  10. class SpaceHeater
  11. {
  12.     public static void main(String[] args)
  13.     {
  14.         // Test users loved the arbitrary 17 settings -- they feel that they
  15.         // have ultimate control.
  16.         Console.Write("On a scale of 1 - 17 how hot should it get: ");
  17.         int setting = Console.Read();
  18.  
  19.         List<Thread> threads = new List<Thread>();
  20.  
  21.         for (int x = 0; x < setting; x++)
  22.         {
  23.             Thread newThread = new Thread(new ThreadStart(new ActualCode().prime));
  24.             threads.Add(newThread);
  25.         }
  26.  
  27.         Console.WriteLine("Press any key to stop the space heater");
  28.         Console.ReadKey();
  29.  
  30.         foreach (Thread t in threads)
  31.         {
  32.             t.Abort();
  33.         }
  34.     }
  35. }
  36.  
  37. class ActualCode
  38. {
  39.     public void prime()
  40.     {
  41.         int x = 1;
  42.         int y = 3;
  43.         int testNumber = 3;
  44.  
  45.         while (true)
  46.         {
  47.             while (x <= y)
  48.             {
  49.                 if (x * y == testNumber)
  50.                 {
  51.                     // Here is where you would print out the primes, as if that
  52.                     // were even important...
  53.                     testNumber++;
  54.                 }
  55.                 x++;
  56.             }
  57.             x = 1;
  58.             y++;
  59.         }
  60.     }
  61. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement