public class Main
{
public static int CountSpaces(String text)
{
int countSpaces = 0;
String letter;
for (int i = 0; i < text.length(); i++)
{
letter = text.substring(i, i + 1);
if (letter.equals(" "))
{
countSpaces++;
}
}
return countSpaces;
}
public static void main(String[] args)
{
System.out.printf("\"Hello, how are you\" contains %1$s spaces" + "\r\n", CountSpaces("Hello, how are you"));
}
}