944,012 Members | Top Members by Rank

Ad:
  • Java Discussion Thread
  • Unsolved
  • Views: 4777
  • Java RSS
You are currently viewing page 1 of this multi-page discussion thread
Jan 21st, 2005
0

Program Compiles fine, but error upon Running

Expand Post »
I created a program, which I will include the source below with a problem. It appears to compile fine, but I get an error when I try to run it. The error is: "Exception in thread "main" java.lang.NoSuchMethodError: main." What does this error mean?

Java Syntax (Toggle Plain Text)
  1. /* This program will allow the user to select a country"s curency and find */
  2. /* what the equivalent is in another. These calculations are based on the */
  3. /* values posted on the www.x-rates.com web site on Thursday, November 18, */
  4. /* 2004. The site had these two items as disclaimers: */
  5. /* 1) "The given values on this site are gathered from the Federal Reserve */
  6. /* Bank of New York, representing the 12 noon buying rates and the */
  7. /* doubleernational Monetary Fund, according to their availability. */
  8. /* 2) Values and dates are believed to be reliable but this site makes no */
  9. /* warranties regarding these values, fitness for a particular purpose, */
  10. /* accuracy or availability." */
  11. /* Written by: Andrew Q. Western */
  12. /* Creation Date: January 13, 2005 */
  13. /* Revision History: January 20, 2005 - Cleaned up the output of the converted */
  14. /* currency value to be only two decimal */
  15. /* places. */
  16.  
  17. import java.io.*; /* This is for the system.io */
  18. import java.util.*; /* This is for allowing user input */
  19.  
  20. public class CurrencyConv1
  21. {
  22.  
  23. String Menu_Opt; /* Menu Option */
  24. String Menu_ID;
  25. String Opt_Num;
  26. float Org_Curr_Amt; /* Original Currency Amount */
  27. double New_Curr_Amt; /* New Currency Amount */
  28. String Currency_Desc[] = { "American Dollar (USD) " , "Australian Dollar (AUD) " ,
  29. "Brazilian Real (BRL) " , "British Pound (GBP) " , "Canadian Dollar (CAD) " ,
  30. "Chinese Yuan (CNY) " , "Danish Krone (DKK) " , "Euro (EUR) " , "Hong Kong Dollar (HKD) " ,
  31. "Indian Rupee (INR) " , "Japanese Yen (JPY) " , "Malaysian Ringgit (MYR) " , "Mexican Peso (MXN) " ,
  32. "New Zealand Dollar (NZD) " , "Norwegian Kroner (NOK) " , "Singapore Dollar (SGD) " ,
  33. "South African Rand (ZAR) " , "South Korean Won (KRW) " , "Sri Lanka Rupee (LKR) " ,
  34. "Swedish Krona (SEK) " , "Swiss Franc (CHF) " , "Taiwan Dollar (TVD) " , "Thai Baht (THB) " ,
  35. "Venezuelan Bolivar (YEB) " }; /* Descriptions of each of the currency types to be converted */
  36.  
  37. BufferedReader inStr = new BufferedReader(new InputStreamReader(System.in));
  38. Scanner input = new Scanner(System.in);
  39.  
  40. public void main (String[] arguments) throws IOException
  41. {
  42. USD_Menu();
  43. }
  44. public void USD_Menu() throws IOException
  45. {
  46. double USD_to_AUD = 1.28436; /* Australian Dollar (AUD) */
  47. double USD_to_BRL = 2.7675; /* Brazilian Real (BRL) */
  48. double USD_to_GBP = 0.540132; /* British Pound (GBP) */
  49. double USD_to_CAD = 1.207; /* Canadian Dollar (CAD) */
  50. double USD_to_CNY = 8.2765; /* Chinese Yuan (CNY) */
  51. double USD_to_DKK = 5.7225; /* Danish Krone (DKK) */
  52. double USD_to_EUR = 0.770297; /* Euro (EUR) */
  53. double USD_to_HKD = 7.7767; /* Hong Kong Dollar (HKD) */
  54. int USD_to_INR = 45; /* Indian Rupee (INR) */
  55. double USD_to_JPY = 104.23; /* Japanese Yen (JPY) */
  56. double USD_to_MYR = 3.8; /* Malaysian Ringgit (MYR) */
  57. double USD_to_MXN = 11.342; /* Mexican Peso (MXN) */
  58. double USD_to_NZD = 1.41123; /* New Zealand Dollar (NZD) */
  59. double USD_to_NOK = 6.2644; /* Norwegian Kroner (NOK) */
  60. double USD_to_SGD = 1.6538; /* Singapore Dollar (SGD) */
  61. double USD_to_ZAR = 6.0284; /* South African Rand (ZAR) */
  62. int USD_to_KRW = 1069; /* South Korean Won (KRW) */
  63. double USD_to_LKR = 104.88; /* Sri Lanka Rupee (LKR) */
  64. double USD_to_SEK = 6.9108; /* Swedish Krona (SEK) */
  65. double USD_to_CHF = 1.1691; /* Swiss Franc (CHF) */
  66. double USD_to_TVD = 32.635; /* Taiwan Dollar (TVD) */
  67. double USD_to_THB = 40.16; /* Thai Baht (THB) */
  68. double USD_to_YEB = 1915.2; /* Venezuelan Bolivar (YEB) */
  69. CurrencyConv1 Rename = new CurrencyConv1();
  70.  
  71. System.out.println("\nCurrency Conversion");
  72. System.out.println(Rename.Currency_Desc[0]+"Conversion Menu\n");
  73. System.out.println("");
  74. System.out.println("A02. USD to AUD Y02. Transfer to AUD Conversion Menu");
  75. System.out.println("A03. USD to BRL Y03. Transfer to BRL Conversion Menu");
  76. System.out.println("A04. USD to GBP Y04. Transfer to GBP Conversion Menu");
  77. System.out.println("A05. USD to CAD Y05. Transfer to CAD Conversion Menu");
  78. System.out.println("A06. USD to CNY Y06. Transfer to CNY Conversion Menu");
  79. System.out.println("A07. USD to DKK Y07. Transfer to DKK Conversion Menu");
  80.  
  81. System.out.println("A08. USD to EUR Y08. Transfer to EUR Conversion Menu");
  82. System.out.println("A09. USD to HKD Y09. Transfer to HKD Conversion Menu");
  83. System.out.println("A10. USD to INR Y10. Transfer to INR Conversion Menu");
  84. System.out.println("A11. USD to JPY Y11. Transfer to JPY Conversion Menu");
  85. System.out.println("A12. USD to MYR Y12. Transfer to MYR Conversion Menu");
  86. System.out.println("A13. USD to MXN Y13. Transfer to MXN Conversion Menu");
  87. System.out.println("A14. USD to NZD Y14. Transfer to NZD Conversion Menu");
  88. System.out.println("A15. USD to NOK Y15. Transfer to NOK Conversion Menu");
  89. System.out.println("A16. USD to SGD Y16. Transfer to SGD Conversion Menu");
  90. System.out.println("A17. USD to ZAR Y17. Transfer to ZAR Conversion Menu");
  91. System.out.println("A18. USD to KRW Y18. Transfer to KRW Conversion Menu");
  92. System.out.println("A19. USD to LKR Y19. Transfer to LKR Conversion Menu");
  93. System.out.println("A20. USD to SEK Y20. Transfer to SEK Conversion Menu");
  94. System.out.println("A21. USD to CHF Y21. Transfer to CHF Conversion Menu");
  95. System.out.println("A22. USD to TVD Y22. Transfer to TVD Conversion Menu");
  96. System.out.println("A23. USD to THB Y23. Transfer to THB Conversion Menu");
  97. System.out.println("A24. USD to YEB Y24. Transfer to YEB Conversion Menu\n");
  98. System.out.println("Z99. Exit Program");
  99. System.out.print("Option: ");
  100.  
  101. /* Read in the menu option selected and extract out the different parts of it. */
  102. Rename.Menu_Opt = inStr.readLine();
  103. Rename.Menu_Opt = Rename.Menu_Opt.toUpperCase(); /* Convert the menu option to upper case, just in case */
  104. /* the user entered it in lower case letters. */
  105. Rename.Menu_ID = Rename.Menu_Opt.substring(0 , 1); /* Extract the first character of the menu option. */
  106. Rename.Opt_Num = Rename.Menu_Opt.substring(1 , 3); /* Extract the last two characters of the menu option. */
  107. int a = Integer.parseInt(Rename.Opt_Num); /* Convert the last two characters of the menu option to */
  108. /* allow the use of "Case" logic. */
  109.  
  110. /* Check to see if the user has requested to exit the program. */
  111. if (Rename.Menu_Opt.equals( "Z99" ) )
  112. {
  113. return;
  114. }
  115.  
  116. /* Make sure that the user enters a valid menu option number. */
  117. if (a < 2 || a > 24 )
  118. {
  119. System.out.println("Invalid menu option, program is now exiting.");
  120. return;
  121. }
  122.  
  123. if (Rename.Menu_ID.equals( "A" ) )
  124. {
  125. switch (a)
  126. {
  127. case 2:
  128. {
  129. System.out.print("Please enter your value of " +Rename.Currency_Desc[0]);
  130. Rename.Org_Curr_Amt = input.nextFloat();
  131. Rename.New_Curr_Amt = Rename.Org_Curr_Amt * USD_to_AUD;
  132. System.out.printf("\nYour Equivalent %s is %.2f\n", Rename.Currency_Desc[1], Rename.New_Curr_Amt);
  133. break;
  134. }
  135. case 3:
  136. {
  137. System.out.print("Please enter your value of " +Rename.Currency_Desc[0]);
  138. Rename.Org_Curr_Amt = input.nextFloat();
  139. Rename.New_Curr_Amt = Rename.Org_Curr_Amt * USD_to_BRL;
  140. System.out.printf("\nYour Equivalent %s is %.2f\n", Rename.Currency_Desc[2], Rename.New_Curr_Amt);
  141. break;
  142. }
  143. case 4:
  144. {
  145. System.out.print("Please enter your value of " +Rename.Currency_Desc[0]);
  146. Rename.Org_Curr_Amt = input.nextFloat();
  147. Rename.New_Curr_Amt = Rename.Org_Curr_Amt * USD_to_GBP;
  148. System.out.printf("\nYour Equivalent %s is %.2f\n", Rename.Currency_Desc[3], Rename.New_Curr_Amt);
  149. break;
  150. }
  151. case 5:
  152. {
  153. System.out.print("Please enter your value of " +Rename.Currency_Desc[0]);
  154. Rename.Org_Curr_Amt = input.nextFloat();
  155. Rename.New_Curr_Amt = Rename.Org_Curr_Amt * USD_to_CAD;
  156. System.out.printf("\nYour Equivalent %s is %.2f\n", Rename.Currency_Desc[4], Rename.New_Curr_Amt);
  157. break;
  158. }
  159. case 6:
  160. {
  161. System.out.print("Please enter your value of " +Rename.Currency_Desc[0]);
  162. Rename.Org_Curr_Amt = input.nextFloat();
  163. Rename.New_Curr_Amt = Rename.Org_Curr_Amt * USD_to_CNY;
  164. System.out.printf("\nYour Equivalent %s is %.2f\n", Rename.Currency_Desc[5], Rename.New_Curr_Amt);
  165. break;
  166. }
  167. case 7:
  168. {
  169. System.out.print("Please enter your value of " +Rename.Currency_Desc[0]);
  170. Rename.Org_Curr_Amt = input.nextFloat();
  171. Rename.New_Curr_Amt = Rename.Org_Curr_Amt * USD_to_DKK;
  172. System.out.printf("\nYour Equivalent %s is %.2f\n", Rename.Currency_Desc[6], Rename.New_Curr_Amt);
  173. break;
  174. }
  175. case 8:
  176. {
  177. System.out.print("Please enter your value of " +Rename.Currency_Desc[0]);
  178. Rename.Org_Curr_Amt = input.nextFloat();
  179. Rename.New_Curr_Amt = Rename.Org_Curr_Amt * USD_to_EUR;
  180. System.out.printf("\nYour Equivalent %s is %.2f\n", Rename.Currency_Desc[7], Rename.New_Curr_Amt);
  181. break;
  182. }
  183. case 9:
  184. {
  185. System.out.print("Please enter your value of " +Rename.Currency_Desc[0]);
  186. Rename.Org_Curr_Amt = input.nextFloat();
  187. Rename.New_Curr_Amt = Rename.Org_Curr_Amt * USD_to_HKD;
  188. System.out.printf("\nYour Equivalent %s is %.2f\n", Rename.Currency_Desc[8], Rename.New_Curr_Amt);
  189. break;
  190. }
  191. case 10:
  192. {
  193. System.out.print("Please enter your value of " +Rename.Currency_Desc[0]);
  194. Rename.Org_Curr_Amt = input.nextFloat();
  195. Rename.New_Curr_Amt = Rename.Org_Curr_Amt * USD_to_INR;
  196. System.out.printf("\nYour Equivalent %s is %.2f\n", Rename.Currency_Desc[9], Rename.New_Curr_Amt);
  197. break;
  198. }
  199. case 11:
  200. {
  201. System.out.print("Please enter your value of "+ Rename.Currency_Desc[0]);
  202. Rename.Org_Curr_Amt = input.nextFloat();
  203. Rename.New_Curr_Amt = Rename.Org_Curr_Amt * USD_to_JPY;
  204. System.out.printf("\nYour Equivalent %s is %.2f\n", Rename.Currency_Desc[10], Rename.New_Curr_Amt);
  205. break;
  206. }
  207. case 12:
  208. {
  209. System.out.print("Please enter your value of " +Rename.Currency_Desc[0]);
  210. Rename.Org_Curr_Amt = input.nextFloat();
  211. Rename.New_Curr_Amt = Rename.Org_Curr_Amt * USD_to_MYR;
  212. System.out.printf("\nYour Equivalent %s is %.2f\n", Rename.Currency_Desc[11], Rename.New_Curr_Amt);
  213. break;
  214. }
  215. case 13:
  216. {
  217. System.out.print("Please enter your value of " +Rename.Currency_Desc[0]);
  218. Rename.Org_Curr_Amt = input.nextFloat();
  219. Rename.New_Curr_Amt = Rename.Org_Curr_Amt * USD_to_MXN;
  220. System.out.printf("\nYour Equivalent %s is %.2f\n", Rename.Currency_Desc[12], Rename.New_Curr_Amt);
  221. break;
  222. }
  223. case 14:
  224. {
  225. System.out.print("Please enter your value of " +Rename.Currency_Desc[0]);
  226. Rename.Org_Curr_Amt = input.nextFloat();
  227. Rename.New_Curr_Amt = Rename.Org_Curr_Amt * USD_to_NZD;
  228. System.out.printf("\nYour Equivalent %s is %.2f\n", Rename.Currency_Desc[13], Rename.New_Curr_Amt);
  229. break;
  230. }
  231. case 15:
  232. {
  233. System.out.print("Please enter your value of " +Rename.Currency_Desc[0]);
  234. Rename.Org_Curr_Amt = input.nextFloat();
  235. Rename.New_Curr_Amt = Rename.Org_Curr_Amt * USD_to_NOK;
  236. System.out.printf("\nYour Equivalent %s is %.2f\n", Rename.Currency_Desc[14], Rename.New_Curr_Amt);
  237. break;
  238. }
  239. case 16:
  240. {
  241. System.out.print("Please enter your value of " +Rename.Currency_Desc[0]);
  242. Rename.Org_Curr_Amt = input.nextFloat();
  243. Rename.New_Curr_Amt = Rename.Org_Curr_Amt * USD_to_SGD;
  244. System.out.printf("\nYour Equivalent %s is %.2f\n", Rename.Currency_Desc[15], Rename.New_Curr_Amt);
  245. break;
  246. }
  247. case 17:
  248. {
  249. System.out.print("Please enter your value of " +Rename.Currency_Desc[0]);
  250. Rename.Org_Curr_Amt = input.nextFloat();
  251. Rename.New_Curr_Amt = Rename.Org_Curr_Amt * USD_to_ZAR;
  252. System.out.printf("\nYour Equivalent %s is %.2f\n", Rename.Currency_Desc[16], Rename.New_Curr_Amt);
  253. break;
  254. }
  255. case 18:
  256. {
  257. System.out.print("Please enter your value of " +Rename.Currency_Desc[0]);
  258. Rename.Org_Curr_Amt = input.nextFloat();
  259. Rename.New_Curr_Amt = Rename.Org_Curr_Amt * USD_to_KRW;
  260. System.out.printf("\nYour Equivalent %s is %.2f\n", Rename.Currency_Desc[17], Rename.New_Curr_Amt);
  261. break;
  262. }
  263. case 19:
  264. {
  265. System.out.print("Please enter your value of " +Rename.Currency_Desc[0]);
  266. Rename.Org_Curr_Amt = input.nextFloat();
  267. Rename.New_Curr_Amt = Rename.Org_Curr_Amt * USD_to_LKR;
  268. System.out.printf("\nYour Equivalent %s is %.2f\n", Rename.Currency_Desc[18], Rename.New_Curr_Amt);
  269. break;
  270. }
  271. case 20:
  272. {
  273. System.out.print("Please enter your value of " +Rename.Currency_Desc[0]);
  274. Rename.Org_Curr_Amt = input.nextFloat();
  275. Rename.New_Curr_Amt = Rename.Org_Curr_Amt * USD_to_SEK;
  276. System.out.printf("\nYour Equivalent %s is %.2f\n", Rename.Currency_Desc[19], Rename.New_Curr_Amt);
  277. break;
  278. }
  279. case 21:
  280. {
  281. System.out.print("Please enter your value of " +Rename.Currency_Desc[0]);
  282. Rename.Org_Curr_Amt = input.nextFloat();
  283. Rename.New_Curr_Amt = Rename.Org_Curr_Amt * USD_to_CHF;
  284. System.out.printf("\nYour Equivalent %s is %.2f\n", Rename.Currency_Desc[20], Rename.New_Curr_Amt);
  285. break;
  286. }
  287. case 22:
  288. {
  289. System.out.print("Please enter your value of " +Rename.Currency_Desc[0]);
  290. Rename.Org_Curr_Amt = input.nextFloat();
  291. Rename.New_Curr_Amt = Rename.Org_Curr_Amt * USD_to_TVD;
  292. System.out.printf("\nYour Equivalent %s is %.2f\n", Rename.Currency_Desc[21], Rename.New_Curr_Amt);
  293. break;
  294. }
  295. case 23:
  296. {
  297. System.out.print("Please enter your value of " +Rename.Currency_Desc[0]);
  298. Rename.Org_Curr_Amt = input.nextFloat();
  299. Rename.New_Curr_Amt = Rename.Org_Curr_Amt * USD_to_THB;
  300. System.out.printf("\nYour Equivalent %s is %.2f\n", Rename.Currency_Desc[22], Rename.New_Curr_Amt);
  301. break;
  302. }
  303. case 24:
  304. {
  305. System.out.print("Please enter your value of " +Rename.Currency_Desc[0]);
  306. Rename.Org_Curr_Amt = input.nextFloat();
  307. Rename.New_Curr_Amt = Rename.Org_Curr_Amt * USD_to_YEB;
  308. System.out.printf("\nYour Equivalent %s is %.2f\n", Rename.Currency_Desc[23], Rename.New_Curr_Amt);
  309. break;
  310. }
  311. }
  312. } else if (Rename.Menu_ID.equals( "Y" ) )
  313. {
  314. switch (a)
  315. {
  316. case 2:
  317. {
  318. System.out.println("I am sorry, but that option is not supported right now.");
  319. break;
  320. }
  321. case 3:
  322. {
  323. System.out.println("I am sorry, but that option is not supported right now.");
  324. break;
  325. }
  326. case 4:
  327. {
  328. System.out.println("I am sorry, but that option is not supported right now.");
  329. break;
  330. }
  331. case 5:
  332. {
  333. System.out.println("I am sorry, but that option is not supported right now.");
  334. break;
  335. }
  336. case 6:
  337. {
  338. System.out.println("I am sorry, but that option is not supported right now.");
  339. break;
  340. }
  341. case 7:
  342. {
  343. System.out.println("I am sorry, but that option is not supported right now.");
  344. break;
  345. }
  346. case 8:
  347. {
  348. System.out.println("I am sorry, but that option is not supported right now.");
  349. break;
  350. }
  351. case 9:
  352. {
  353. System.out.println("I am sorry, but that option is not supported right now.");
  354. break;
  355. }
  356. case 10:
  357. {
  358. System.out.println("I am sorry, but that option is not supported right now.");
  359. break;
  360. }
  361. case 11:
  362. {
  363. System.out.println("I am sorry, but that option is not supported right now.");
  364. break;
  365. }
  366. case 12:
  367. {
  368. System.out.println("I am sorry, but that option is not supported right now.");
  369. break;
  370. }
  371. case 13:
  372. {
  373. System.out.println("I am sorry, but that option is not supported right now.");
  374. break;
  375. }
  376. case 14:
  377. {
  378. System.out.println("I am sorry, but that option is not supported right now.");
  379. break;
  380. }
  381. case 15:
  382. {
  383. System.out.println("I am sorry, but that option is not supported right now.");
  384. break;
  385. }
  386. case 16:
  387. {
  388. System.out.println("I am sorry, but that option is not supported right now.");
  389. break;
  390. }
  391. case 17:
  392. {
  393. System.out.println("I am sorry, but that option is not supported right now.");
  394. break;
  395. }
  396. case 18:
  397. {
  398. System.out.println("I am sorry, but that option is not supported right now.");
  399. break;
  400. }
  401. case 19:
  402. {
  403. System.out.println("I am sorry, but that option is not supported right now.");
  404. break;
  405. }
  406. case 20:
  407. {
  408. System.out.println("I am sorry, but that option is not supported right now.");
  409. break;
  410. }
  411. case 21:
  412. {
  413. System.out.println("I am sorry, but that option is not supported right now.");
  414. break;
  415. }
  416. case 22:
  417. {
  418. System.out.println("I am sorry, but that option is not supported right now.");
  419. break;
  420. }
  421. case 23:
  422. {
  423. System.out.println("I am sorry, but that option is not supported right now.");
  424. break;
  425. }
  426. case 24:
  427. {
  428. System.out.println("I am sorry, but that option is not supported right now.");
  429. break;
  430. }
  431. }
  432. } else System.out.println("Invalid menu option, program is now exiting.");
  433.  
  434. }
  435. }
Reputation Points: 10
Solved Threads: 0
Light Poster
AQWst is offline Offline
31 posts
since Jan 2005
Jan 21st, 2005
0

Re: Program Compiles fine, but error upon Running

you forgot the main method:

public static void main(String[] args)
{
}
Reputation Points: 113
Solved Threads: 19
Postaholic
server_crash is offline Offline
2,108 posts
since Jun 2004
Jan 21st, 2005
0

Re: Program Compiles fine, but error upon Running

Do you mean that I have to call this or what? Because I have it defined and it calls the USD_Menu. (I'm confused).
Reputation Points: 10
Solved Threads: 0
Light Poster
AQWst is offline Offline
31 posts
since Jan 2005
Jan 21st, 2005
0

Re: Program Compiles fine, but error upon Running

it's not static.

It MUST have the exact signature:

public static void main(String[] args) //you can call the string array whatever
{
}
Reputation Points: 113
Solved Threads: 19
Postaholic
server_crash is offline Offline
2,108 posts
since Jun 2004
Jan 21st, 2005
0

Re: Program Compiles fine, but error upon Running

I first changed main to be static and it said that USD_Menu needed to be static too. I then changed USD_Menu too, but it now says that non-static variables can't be referenced from a static context.
Reputation Points: 10
Solved Threads: 0
Light Poster
AQWst is offline Offline
31 posts
since Jan 2005
Jan 21st, 2005
0

Re: Program Compiles fine, but error upon Running

Hi everyone,

See what you did.
Java Syntax (Toggle Plain Text)
  1.  
  2. public void main (String[] arguments) throws IOException
  3. {
  4. USD_Menu();
  5. }

Do this instead(call it at the end of the class)

Java Syntax (Toggle Plain Text)
  1.  
  2. public static void main(String[] args) throws IOException
  3. {
  4. CurrencyConv1 a = new CurrencyConv1();
  5. a.USD_Menu();
  6. }

From what i see you do not have the very basic understanding of Java but
don't worry too much about it.

I suggest you go to sun's site and download the awt tutorial and learn the basics from there and you will realize that you will understand certain concepts easier.

Yours Sincerely

Richard West
Reputation Points: 25
Solved Threads: 10
Practically a Master Poster
freesoft_2000 is offline Offline
623 posts
since Jun 2004
Jan 21st, 2005
0

Re: Program Compiles fine, but error upon Running

Did you happen to copy my program into a source editor and try to compile it yourself? I am getting a lot more errors than before. (Too Many to mention here).
Reputation Points: 10
Solved Threads: 0
Light Poster
AQWst is offline Offline
31 posts
since Jan 2005
Jan 22nd, 2005
0

Re: Program Compiles fine, but error upon Running

This is still a problem.
Reputation Points: 10
Solved Threads: 0
Light Poster
AQWst is offline Offline
31 posts
since Jan 2005
Jan 22nd, 2005
0

Re: Program Compiles fine, but error upon Running

You really need to work on how it's written.
Reputation Points: 113
Solved Threads: 19
Postaholic
server_crash is offline Offline
2,108 posts
since Jun 2004
Jan 22nd, 2005
0

Re: Program Compiles fine, but error upon Running

Maybe if I have time I'll look at it, but right now I don't.
Reputation Points: 113
Solved Threads: 19
Postaholic
server_crash is offline Offline
2,108 posts
since Jun 2004

This thread is more than three months old

No one has posted to this discussion for at least three months. Please let old threads die and do not reply to them unless you feel you have something new and valuable to contribute that absolutely must be added to make the discussion complete. Otherwise, please start a new thread in this forum instead.
Message:
Previous Thread in Java Forum Timeline: Final year project
Next Thread in Java Forum Timeline: coding if loops





About Us | Contact Us | Advertise | Acceptable Use Policy
Forum Index | Build Custom RSS Feed


Follow us on Twitter


© 2011 DaniWeb® LLC