/* * april9Class.cpp * * Created by Shannon Steinfadt on 4/7/08. * */ #include using namespace std; int main() { //int int_num; const double PI=3.14; double a[12]; cout << "The value of PI is " << PI << endl; a[0] = PI; a[1] = PI + 1; a[2] = PI + 2; cout << "Here are the values from array a " << endl; cout << a[0] << "; " << a[1]<< "; " << a[2] << "; " << a[3] << endl; return 0; }