blob: bac87bf4e0ee6c30ae0e440c905640b131f26e6e (
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
|
// BlankConsoleLab.cpp : This file contains the 'main' function. Program execution begins and ends there.
//
#include <iostream>
#include <stdio.h> /* printf */
#include <math.h> /* pow */
#include <cmath> /* pow */
using namespace std;
using std::cout;
using std::cin;
using std::endl;
const float FMAX = 121;
const float FMIN = -80;
const float CMAX = 49.5;
const float CMIN = -62; //Set values for minimum and maximum temperatures.
int C_to_F(int Celsius) {
}
int main()
{
int Celsius = 0;
cout << "Hello World!\n";
}
|