0
Hi i want know how are the input in this app
input
3 Answers
+ 1
can you be a little more specific
+ 1
You can take input in java using Scanner.
import java.util.Scanner;
public class TakeInput {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int number = sc.nextInt();
System.out.println(number);
}
}
0
i cant make input in java. can you to show a example please