asaha718 / java-threads-lab-7

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Threads Lab 7

Instructions

Write a method called getCallableInteger that reads an integer from the standard input and returns a Callable<Integer>.

Starter Code

import java.util.Scanner;
import java.util.concurrent.Callable;

public class Main {
    public static Callable<Integer> getCallableInteger() {
        // your code here
    }
}

About

License:Other


Languages

Language:Java 100.0%