aboutsummaryrefslogtreecommitdiff
path: root/InClass Exercise2/Source.cpp
blob: 87fe11f9a125092b865f6aff01baff278890bb93 (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
// Name: Miles Ellsworth
// Date: 1/11/2024
// Class: CST 116
// Assignment: In-Class Exercise 2

#include <iostream>

using std::cout;
using std::cin;
using std::endl;


int main ()
{
	int i = 0;

	std::cout << "Can you input a whole number, please? ";
	std::cin >> i;
	std::cout << "You inputted " << i << std::endl;

	
	return 0;
}