aboutsummaryrefslogtreecommitdiff
path: root/Blakermoduleone.cpp
blob: ba4e35d1308cd51432e1dd586aea44a1c394df36 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
//Pseudocode for radius of a circle:
//1. include iostream
//2. main() function
//3. prompt user to input circle radius:
//4. assign prompt value to RADIUS
//5. assign PI value of 3.1416
//6. assign AREA value PI*RADIUS squared
//7. Print AREA of circle
//8. Call to main


//#include <iostream>

//int main() 
//{
 // std::cout << "Modified version of original C program "
 //           << " (by kernighan & Ritchie)\n";

 // std::cout << "Hello World!";

 // return 0;
//}

#include <iostream>

int main()
{
  std::cout << "My name is Cari.\nI am 30 years old.";

  
}