Wednesday, April 2, 2014

use variables to work with data

1) A variable is what your program uses to store data.

2) Whenever you declare a variable, you tell your program its type and its name.

3) int maxWeight;    string message;      bool boxChecked; variable Types
   
    int myHeight = 63;

No comments:

Post a Comment