Search:

Type: Posts; User: skw4712

Search: Search took 0.08 seconds.

  1. Re: (Beginner's calculator) Additional calculation after first result...

    1st: Yes and yes. I have a problem enabling Java to recognize certain characters in a string (like capitalizing each word in a string, or math operators in this case). This whole substring (what we...
  2. Re: (Beginner's calculator) Additional calculation after first result...

    It doesn't display any error message...It's a logic error...But I just can't seem to pinpoint where...

    --- Update ---

    Wow. Wow. I forgot to put breaka at the end of each cases under...
  3. (Beginner's calculator) Additional calculation after first result...

    Sorry for this crap disguised as a code. Just about finished learning loops...

    This is a simple calculator and I have to do one more calculation after the initial calculation (i.e. 120 + 23 = 123,...
  4. Replies
    1
    Views
    1,033

    (Counter/Accessor) Did I do this right?

    I didn't understand the problem, so I looked at this explanation: methods - Using a Counter class to increment and decrement: java - Stack Overflow

    And I came up with:


    package...
  5. Trying to create an alphabet-only string of any length

    package test2problem3;
    import java.util.Random;
    public class Test2problem3 {

    public static void main(String[] args) {


    Random gen= new Random();

    String ranString="";
  6. Re: (Beginner) Hopelessly lost on Temperature converting (C to F, F to C)

    import java.util.Scanner;

    public class Project5 {

    public static void main(String[] args) {
    Scanner keyboard = new Scanner(System.in);

    double temp;
    System.out.print("Enter a...
  7. (Beginner) Hopelessly lost on Temperature converting (C to F, F to C)

    4 Hours of struggles, no result..Completely stuck with my dull brain and need help..@-)

    import java.util.Scanner;

    public class Project5 {

    public static void main(String[] args) {
    Scanner...
  8. (Real beginner) Removing space before the first word when switched

    This one little problem has been bugging me for 1 whole hour.

    import java.util.Scanner;
    public class Project8 {

    public static void main(String[] args)
    {
    Scanner keyboard = new Scanner...
Results 1 to 8 of 8