aboutsummaryrefslogtreecommitdiff
path: root/CST116F2021-Lab2/Lab 3c. 3
blob: 31efb459c4628192dde236ceb9e5ee654e4b86d6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include <iostream> 

using std::cout; 

int age, days; 

int main() 

{ 

cout << "Please Enter Your Age: \n\n"; 

std::cin >> age; 

days = age * 365; 

cout << "\nYour Age in Days: " << days; 

return 0; 

}