aboutsummaryrefslogtreecommitdiff
path: root/CST116F2021-Lab2/CST116F2021-Lab2.cpp
blob: 93da427aa9701f9a459887afaa5f199f19ad8ca2 (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
32
33
34
35
36
37
38
39
40
41
42
// CST116F2021-Lab2.cpp : This file contains the 'main' function. Program execution begins and ends there.
//

#include <iostream>
using namespace std;

// int main()
// {
   // int age = 19;
   // float shoe_size = 8.5;
   // int altitude = 0;
   // char gender = 70;
   // int weight = 175;
   // return 0;
// }

//int main()
//{
   // char ascii = 67;

   // cout << ascii << '\n';

   // ascii = 43;
   // cout << ascii << '\n';
   // cout << ascii << '\n';

   // return 0;
//}
    //

//int main()
//{
   // int days_in_year = 365;
   // int age = 18;
   // int age_in_days = days_in_year * age;

   // cout << "My age in days since my 18th birthday: "
   //     << age_in_days;

   // return 0;

    //};