document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1.     do
  2.     {
  3.         printf("Enter your number of processor cores: ");
  4.         scanf("%d",&cores);
  5.        
  6.         if(isdigit(cores) != 0)
  7.         {
  8.             confirmed++;
  9.         }
  10.     }
  11.     while(confirmed-- == 0);
');