Search:

Type: Posts; User: Famous112

Search: Search took 0.09 seconds.

  1. Replies
    6
    Views
    922

    Re: Need Help With Memory Calculator...

    Ill go from there, thanks - Ill update if any other questions.
  2. Replies
    6
    Views
    922

    Re: Need Help With Memory Calculator...

    Pretty much the same questions.. i need some guidance on what i should do next
  3. Replies
    6
    Views
    922

    Re: Need Help With Memory Calculator...

    I Updated the code... - Error message is gone after i changed something, i realized i had methods inside my main method.

    Code is updated to the most recent that i have - in the Main post
  4. Replies
    6
    Views
    922

    Need Help With Memory Calculator...

    Couldnt figure out where to post this... So here i am.
    I need help figuring out what to do next.

    this is suppose to be a calculator that works with the current value, basically keeping the...
  5. Replies
    9
    Views
    2,113

    [SOLVED] Re: Confused on how to use multiple Methods...

    import java.util.Scanner;

    public class CaluclatorWithMethods {
    // main method
    public static void main(String[] args) {
    // input scanner
    Scanner stdIn = new Scanner(System.in);

    int...
  6. Replies
    9
    Views
    2,113

    [SOLVED] Re: Confused on how to use multiple Methods...

    I am getting a good amount of errors... i think i really am overthinking this... I got put into a lower level programming class , I dont use java... I work with python...

    Ill take another look,...
  7. Replies
    9
    Views
    2,113

    [SOLVED] Re: Confused on how to use multiple Methods...

    Ive changed it alittle now...


    import java.util.Scanner;

    public class CaluclatorWithMethods {
    public static void main(String[] args) {

    System.out.println(" Menu: ");...
  8. Replies
    9
    Views
    2,113

    [SOLVED] Confused on how to use multiple Methods...

    Working on an assignment for school, cant figure out what i need to do to move on in this project...

    We are suppose to implement these exact methods into my calculator program.


    public...
  9. Replies
    10
    Views
    1,511

    [SOLVED] Re: Java Noob - Terminating loop.

    They are incorrectly placed? This is so confusing D:

    --- Update ---

    Figured it out, Thank you guys !!!! :D
  10. Replies
    10
    Views
    1,511

    [SOLVED] Re: Java Noob - Terminating loop.

    I did, But when it runs, it wont end if the user enters " 6 " from what i implemented to exit the program.
  11. Replies
    10
    Views
    1,511

    [SOLVED] Re: Java Noob - Terminating loop.

    Changed the question! Now i need to figure out how to allow it to terminate? it just keeps looping.. D:
  12. Replies
    10
    Views
    1,511

    [SOLVED] Re: Java Noob - Using for Loop to terminate the program after 3 incorrect inputs - in a row. // How to continue loop after Arithmetic error.

    Would a while (true) Loop work if i wanted to terminate the program after 3 incorrect inputs? I'm trying to figure out how i could do that.

    Ill look at the Try-catch block. this is all still so...
  13. Replies
    10
    Views
    1,511

    [SOLVED] Java Noob - Terminating loop.

    Hi, I am currently building a Menu driven calculator, and i have got my loop to go, but now when the user enters " 6 " from the menu - the program does not terminate. How can i get this to end?

    I...
  14. [SOLVED] It worked!!! Thank you!!!! :)

    It worked!!!
    Thank you!!!! :)
  15. [SOLVED] I have an if statement for it. Its just not...

    I have an if statement for it. Its just not working.

    My current if statement:


    if ( menuNumber == 4) {
    System.out.println ("what is the first number?:")
    int number1 = input.nextInt ();...
  16. [SOLVED] Re: Dividing by Zero Issue ( Project - Cant figure out how to do it, or why mine is not working )

    Sorry, I guess that was unclear. I mean the program itself is working. As everything else I need it to do.

    But. I need to figure out how to get it to display " I'm sorry, you cannot divide by...
  17. [SOLVED] Dividing by Zero Issue ( Project - Cant figure out how to do it, or why mine is not working )

    [ SOLVED ]

    So, I'm trying to have the program display " You can not divide by zero " When the user divides by zero. ive read my book that i have ( purchased from school) - And i cant figure it...
Results 1 to 17 of 18