import java.util.*;
import java.io.*;


/**
 * A miscellaneous collection of methods involving loops.
 */
public class LoopsConditionals {
    
    /** 
     * Ask the user for a number and print the positive
     * divisors of that number.
     */
    public static void printDivisors() {
    }
    
    /**
     * Return the number of spaces in s - do NOT use a StringTokenizer or split.
     * @param s the String in which to look for spaces.
     * @return the number of spaces in s.
     */
    public static int countSpaces(String s) {
    
    }
    
    /**
     * Use a StringTokenizer to print every other 
     * word in the String s.
     **/
    public static void everyOtherWord(String s) {


    }

     
}
