Thông tin

Hạn chót Không có hạn chót
Trạng thái Chưa được thử
Điểm số 0.0%
Số lần thử 0
Giới hạn nộp bài Không có giới hạn

Nộp bài với tư cách

Dành cho đánh giá

Lần nộp bài tốt nhất
Không có bài nộp

Lịch sử nộp bài

  • Không có bài nộp

Programming exercise - Adder

In this assignment, you will implement a fairly complicated method on your repository.

Go to the Adder.java file from your own repository.

It contains one task inside the increment method. You will need to fill in the missing implementation:

public static int increment(int x) {
     throw new RuntimeException("Not implemented");
}

Replace the exception and implement the method such that it returns the increment of x.

The implementation needs to be done within your personal repository that you have setup before.

You can check that your implementation is correct by running the tests within MyTests.