Guest User

Untitled

a guest
Jul 19th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. import java.util.Scanner;
  2.  
  3. public class P7 {
  4. public static void main(String[] args) {
  5. Scanner scanner=new Scanner(System.in);
  6. int range=scanner.nextInt();
  7. for(int i=1;i<=range;i++){
  8. String stringInput =scanner.nextLine();
  9. String[] total =stringInput.split("\\s");
  10. int length=total.length;
  11. System.out.println(length);
  12. }
  13. }
  14. }
Add Comment
Please, Sign In to add comment