1/11/00
COM1100 Winter2000 Yuhong Yin Northeastern University
22
Variable Definition -- 2
nChange the value of a variable anywhere in the program using assignment statement
nExamples
nint x;  // variable declaration
nx = 9;
nx  = 7 + 8;  
nstring herName; // variable declaration
nherName = “ Elice Brown”;
n