Search:

Type: Posts; User: Kewish

Search: Search took 0.15 seconds.

  1. [SOLVED] Re: AssertionFailedError: Expected but was

    class Foo {
    public static void main(String[] args) {
    int num = 10;
    num = doubleUp(num);
    System.out.println(num);
    }

    public static int doubleUp(int num) {
    ...
  2. [SOLVED] Re: AssertionFailedError: Expected but was

    http://www.javaprogrammingforums.com/content/37-first-time-here-please-read.html <--- please read on how to correctly post your code.

    Use "try catch" blocks to handle the exception.

    The...
Results 1 to 2 of 2