Skip to content

Instantly share code, notes, and snippets.

@tonkatsu7
Created July 12, 2018 14:22
Show Gist options
  • Save tonkatsu7/724dd3089513708d69ba17afb234a274 to your computer and use it in GitHub Desktop.
Save tonkatsu7/724dd3089513708d69ba17afb234a274 to your computer and use it in GitHub Desktop.
CoderByte challenge Word Count
import java.util.*;
import java.io.*;
class Main {
public static int WordCount(String str) {
return str.split(" ").length;
}
public static void main (String[] args) {
// keep this function call here
Scanner s = new Scanner(System.in);
System.out.print(WordCount(s.nextLine()));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment