View Single Post
  #2  
Old 05-23-2004, 06:45 AM
govtcheeze
Hill Giant
 
Join Date: Mar 2004
Location: South Florida
Posts: 247
Default

Code:
#include <iostream.h> 

int main () 
{ 
  cout << "Kevin's times table calculator!"; 
  cin >> j; 
  cout << "Now calulating the times table for: << j; 
  for(i = 1; i <= 20; i++)
    cout << " x" << i << " is " << j*i << ".\n"; 

  for(i = 30; i <= 100; i += 10)
    cout << " x" << i << " is " << j*i << ".\n"; 
}
...and I do not think the purpose of the Jr. Dev was to post random code, but to post fixes to eqemu code the devs have overlooked / not had time to address.
__________________
GovtCheeze, Welfare Warrior
"Listen, here's the thing. If you can't spot the sucker in the first half hour at the table, then you ARE the sucker." -- Mike McDermott, Rounders

Developer of the original (circa 2004):
Loots v2.0, bitch!
Faction v1.0, bitch!
Magelo-like clone v0.3, bitch!
Zone geometry and spawn/path viewer, bitch!
Reply With Quote