summaryrefslogtreecommitdiff
path: root/4p36.cpp
blob: 5667dcba1c7e58441b56e4d89cab94a9368c7459 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <iostream>

/*
 *
 * 4.36
 *
 *
 */

int main () {

	int i = 10;
	double d = 2;
	std::cout << (i *= static_cast<int>(d)) << std::endl;
	return 0;
}