summaryrefslogtreecommitdiff
path: root/while.cpp
blob: 189d66a5ae53fbeedc69c84e23bc0393d84c9731 (plain)
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
#include <iostream>

/*
 * 
 * A little bit of while looping
 *
 * 
 * 
 *
 *
 */

int main (void) {

	int val = 1;
	int val2 = 10;
	while(val <= 10) {
		std::cout << val << std::endl;
		val++;
	}
	
	while(val2 >= 1) {
		std::cout << val2 << std::endl;
		val2--;
	}

	std::cout << "Done." << std::endl; // We send text to 'cout' a so called 'ostream'
	uint64_t sum = 0;
	uint64_t one = 0;
	uint64_t two = 0;
	std::cin >> one >> two;
	uint64_t original_one = one;
	while(one <= two) {
		sum += one;
		one++;
	}

	std::cout << "The sum of "<< original_one  << " to " << two  << " inclusive is: " << sum << std::endl;
	return 0;
}