0
My solution for Land Ho!
I think this is simpliest solution of this challenge. Stare with me yours if different :) import java.util.Scanner; public class Program { public static void main(String[] args) { Scanner read = new Scanner(System.in); int boat = 20; int queue = read.nextInt(); int trip = 10; int ret = 20; int numberOfTrips = queue / boat; System.out.println(numberOfTrips * ret + trip); } }
1 Odpowiedź
+ 3
Hi you can share your codes on sololearn playground: Go to Code section, click+, select the programming language, insert your code, save. Check "Public" to make your code visible to others.