aboutsummaryrefslogtreecommitdiff
path: root/homework-2/header.h
blob: bb364a033cd6d5ef6f6fa98ad082ce6d23b5da76 (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
#ifndef MY_HEADER_H
#define MY_HEADER_H

float FtoC(int fah);

float CtoF(int cel);

#endif
/*
#ifdef VERBOSE 
if (enter_num = 1) {
	std::cout << i << "F to C " << std::endl;
	std::cout << i << " - 32 * (5/9)" << std::endl;
	std::cout << "C = " << CtoF(i) << std::endl;
}
else {
	std::cout << i << "C to F " << std::endl;
	std::cout << i << "  (9/5) + 32" << std::endl;
	std::cout << "F = " << CtoF(i) << std::endl;
};
#endif;
*/