So Iv'e decided to learn C++ so I can code/program.
I'm learning from a book "C++ without fear 2nd edition".
So far I have made a temperature conversion console program, Celsius to Fahrenheit it is my first ever c++ program and is attached, Feedback is appreciated.
Thanks. 🙂
Download Program: http://blogpromotion.net/projectdennis/ ... verter.zip
DLL File: http://www.dll-files.com/dllindex/dll-f ... l?msvcr110
Source Code:
I'm learning from a book "C++ without fear 2nd edition".
So far I have made a temperature conversion console program, Celsius to Fahrenheit it is my first ever c++ program and is attached, Feedback is appreciated.
Thanks. 🙂
Download Program: http://blogpromotion.net/projectdennis/ ... verter.zip
DLL File: http://www.dll-files.com/dllindex/dll-f ... l?msvcr110
Source Code:
Code:
// convert.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include <iostream>;
using namespace std;
int main() {
double ctemp, ftemp;
cout << "================= Celsius To Fahrenheit Temperature Converter =================\n\n\n";
cout << "Please Input a Celsius Temperature and press ENTER: ";
cin >> ctemp;
ftemp = (ctemp * 1.8) + 32;
cout << "\n";
cout << "Fahrenheit Temperature is: " << ftemp;
cout << "\n\n";
system("PAUSE");
return 0;
}







