Assignment #80 CountingMachine

Code

      ///Name: Ian Grant
      ///Period:5
      ///Project Name: CountingMachine
      ///File Name:CountingMachine.java
      ///12/10/15
      
      import java.util.Scanner;
      public class CountingMachine
      {
          public static void main(String[] args)
          {
              //1. It increases the 
              //2. intiates n to 1
              Scanner stuff=new Scanner(System.in);
              System.out.print("Count to: ");
              int num = stuff.nextInt();
              for (int n=0; n<=num; n=n+1)
              {
                  System.out.print(" "+n);
              }
          }
      }
      

Output