What is the output of string INSTITUTION = "Richland \rCollege"; ? There is also a major implementation problem with this code that you should be able to find it easy.
//Project 0: Hello World
//Revision: 1.0
//Date: 08/15/2011
//Description: Chapter 2 Summary
#include <iostream>
#include <string>
#include <math.h>
#include"header.h"
using namespace std;
using namespace richland;
int main(){
string INSTITUTION = "Richland \rCollege";
cout << INSTITUTION << endl;
float PI = 3.14E0;
cout << PI << endl;
int value = -200;
cin >> celsius>>value;
fahrenheit = (float)((celsius)*(9 / 5) + 32);
cout << fahrenheit<< endl;
float ans = (fahrenheit - 32)*(5 / 9);
cout << ans << endl;
char ch = 'A';
cout << "The \"value\" is: " <<ch<< endl;
cout << "The value is: " << ch+1 << endl;
cout << "The value is: " << static_cast<char>(ch+1)<< endl;
string hello = "Hello";
hello[3] = 'p';
cout << "The \nstring \tis: " << hello << endl;
return 0;
}
No comments:
Post a Comment