Jump to content

jamesy

Members
  • Posts

    12
  • Joined

  • Last visited

jamesy's Achievements

Newbie

Newbie (1/14)

  1. im no expert but you could make a custom yaggi antenna ? and buy a cheap adapter that supports the connection sma i think the connection is , my mate is a freak with signals and antennas and he did before get outstanding distances with yaggi antennas some how
  2. Hey a while a go i had the same problem where the signal strength of my router didn't push enough distance to reach my node am there was this programme i think it was free and i also think the pro version is inexpensive it basically enables your laptop to be a repeater rather than a dedicated router so you can have a normal pc just with the repeating capability , Heres an idea i just found - http://www.sevenforums.com/network-sharing/254729-turn-windows-7-laptop-into-wireless-repeater-one-wireless-adapter.html Here is the prog i used myself - http://diycomputerrepairs.buzznet.com/user/links/3080165/turn-laptop-into-wi-fi/ Id personally go with the virtual route if it works as its more professional but hey connectify is free and easly used Hope it helps Jamesy
  3. Hi guys so here is a project i am working on , i have two arrays array "l1" and "s1" bacially "l1" holds the answers to the questions asked for the maths questions ,, when the person answers the question it is loaded into the other array "s1" from the scanner now i want to compare theses two arrays to see how much questions are right and how much are wrong therefore printing out some thing like "Wrong" and "Right", does any one have any ideas how i could go about it ? really stuck thanks guys for any help import java.util.Scanner; public class Math { public static void main(String[] args) { Scanner myScanner = new Scanner(System.in); boolean con = true; int level; // main values int l1[] ={1,2,3,4,5,6,7,8,9,10,11,12,2,4,6,8,10,12,14,16,18,20,22,24,3,6,9,12,15,18,21,24,27,30,33,36}; int s1[]= new int[36]; /////////////..................................................................... System.out.println("Hello Welcome To The Maths Test !!"); System.out.println(); System.out.println("Best Of Luck !!"); System.out.println(); System.out.println("Please Select Your Difficulity !!"); System.out.println(); System.out.print("Type 1 For Easy / Type 2 For Medium / Type 3 For Hard!!"); System.out.println(); ///////// choices..................................................... level = myScanner.nextInt(); // Easy if (level ==1 ) { while ( level ==1 ) { System.out.println("You Have Selected Stage 1 "); level =2; System.out.println("Best Of Luck In Stage 1 "); //////times one tables System.out.print("What is 1 x 1 = "); l1[0] = myScanner.nextInt(); System.out.print("What is 1 x 2 = "); l1[1] = myScanner.nextInt(); System.out.print("What is 1 x 3 = "); l1[2] = myScanner.nextInt(); System.out.print("What is 1 x 4 = "); l1[3] = myScanner.nextInt(); System.out.print("What is 1 x 5 = "); l1[4] = myScanner.nextInt(); System.out.print("What is 1 x 6 = "); l1[5] = myScanner.nextInt(); System.out.print("What is 1 x 7 = "); l1[6] = myScanner.nextInt(); System.out.print("What is 1 x 8 = "); l1[7] = myScanner.nextInt(); System.out.print("What is 1 x 9 = "); l1[8] = myScanner.nextInt(); System.out.print("What is 1 x 10 = "); l1[9] = myScanner.nextInt(); System.out.print("What is 1 x 11 = "); l1[10] = myScanner.nextInt(); System.out.print("What is 1 x 12 = "); l1[11] = myScanner.nextInt(); // Times 2 Tables ----------------------------------------------------------------------------------------------------------------------- System.out.print("What is 2 x 1 = "); l1[12] = myScanner.nextInt(); System.out.print("What is 2 x 2 = "); l1[13] = myScanner.nextInt(); System.out.print("What is 2 x 3 = "); l1[14] = myScanner.nextInt(); System.out.print("What is 2 x 4 = "); l1[15] = myScanner.nextInt(); System.out.print("What is 2 x 5 = "); l1[16] = myScanner.nextInt(); System.out.print("What is 2 x 6 = "); l1[17] = myScanner.nextInt(); System.out.print("What is 2 x 7 = "); l1[18] = myScanner.nextInt(); System.out.print("What is 2 x 8 = "); l1[19] = myScanner.nextInt(); System.out.print("What is 2 x 9 = "); l1[20] = myScanner.nextInt(); System.out.print("What is 2 x 10 = "); l1[21] = myScanner.nextInt(); System.out.print("What is 2 x 11 = "); l1[22] = myScanner.nextInt(); System.out.print("What is 2 x 12 = "); l1[23] = myScanner.nextInt(); // three times tables ---------------------------------------------------------------------------------------------------------------- System.out.print("What is 3 x 1 = "); l1[24] = myScanner.nextInt(); System.out.print("What is 3 x 2 = "); l1[25] = myScanner.nextInt(); System.out.print("What is 3 x 3 = "); l1[26] = myScanner.nextInt(); System.out.print("What is 3 x 4 = "); l1[27] = myScanner.nextInt(); System.out.print("What is 3 x 5 = "); l1[28] = myScanner.nextInt(); System.out.print("What is 3 x 6 = "); l1[29] = myScanner.nextInt(); System.out.print("What is 3 x 7 = "); l1[30] = myScanner.nextInt(); System.out.print("What is 3 x 8 = "); l1[31] = myScanner.nextInt(); System.out.print("What is 3 x 9 = "); l1[32] = myScanner.nextInt(); System.out.print("What is 3 x 10 = "); l1[33] = myScanner.nextInt(); System.out.print("What is 3 x 11 = "); l1[34] = myScanner.nextInt(); System.out.print("What is 3 x 12 = "); l1[35] = myScanner.nextInt(); }} /// maths here // // medium else if (level ==2) {while (level==2){ System.out.print("You Have Selected Stage 2"); level=3; } } // medium else if (level ==3) {while (level==3){ System.out.print("You Have Selected Stage 3"); level=4; } } else if (level !=1 && level!=2 && level!=3) {while (level !=1 && level!=2 && level!=3 ){ System.out.print("Please Select The Correct Stage Between 1-3"); level=1; }} }}
  4. Flare back thanks a mill it worked perfectly !! yeah well its a math project i just started java two weeks ago so im a proper newbie ha yeah thats the marking scheme on the brief bit theirs more to be added , your a led thanks for the advice on adding the code and for your help dude
  5. hi guys thanks for the time im getting this error " error: illegal start of expression else if (grades >=40 && <=54) " i bascially want it to out put " d" if the grade is between 40 and 54 thanks again here is my code import java.util.Scanner; public class grade { public static void main(String[] args) { Scanner myScanner = new Scanner(System.in); int grades; System.out.print("Please Enter Your Grade Percentage -- "); grades = myScanner.nextInt(); if(grades <40) System.out.print("Congradulations You Are Awarded An F Mark "); else if (grades >=40 && <=54) System.out.println("d"); } }
  6. try eurosoft pc check you can download it from the most wonderfully type of site ever but the software does a complete smart check of the hard drive and other tests also giving really over adv advanced information of the drives health
  7. God no im asking for some recommendations like what could i possible code into this to make it unique like im looking for some personal opions as to what ye would do as coders
  8. Hi guys this is pretty urgent and il much appreciate some help , so im building this kids calculator in java where the kid is asked math questions here is the thinks that have to be implemented into it it a college project im starting and would love some feed back or help thanks guys here is what is needed in the programme. 1.Ask kid difficulty , easy , med , hard ..... easy ranging from 1-3 med 1 -6 and hard 1 - 12 2.have to ask questions and record them into some kind of memory 3.check if their right and if not give the option to the kid to start over, after all give the kid the correct answer 4. if right on first go ask if they want to step up a level. 5. give them a score in points for their grades thanks guys
  9. i have this one from college called " a course in programming with java wit tony mullins " very detailed and comes with full examples and tests
  10. Dude can you reword that in a simpler form ? i do a good but of java think i might have some help here , i might hit you with a question afterwords
  11. if you cannot access your operating system or even if it is too slow i would recommend borrowing another machine and downloading a free linux based rescue disk called hirens boot cd and burn it to a dvd with imgburn another free programe , when you boot the disk you can load into a utility called mini xp here you can brows through your hard drive and back up your data to a memory usb stick it is actually not that hard to do ps hirens boot disk has a lot of extras also here are some links http://www.hiren.info/pages/bootcd ........... boot disk http://www.imgburn.com/ .............To burn the disk plus i think the size is small enough so you might get it on a cd hope it helps
  12. Virtual Box Dude i was using it for the last two years and never had any major problems i do agree with the guys also it does have good hardware acceleration also
×
×
  • Create New...