So far for my code i have
Quote:
//Variables and Constants
//
//Author: J-Bo
#include <iostream.h>
main()
{
//Part4 - declare variables
int grade. b;//b will be used to hold age
float a;//a will be used to hold temperature
//Part 5 - declare constants
const float TEMPERATURE=72.5;
const int YOUR_AGE=16;
//Part6 - intalize variables
a=TEMPERATURE;
grade=11;
b=YOUR_AGE;
//Part 7 - Display the results
cout <<"I am in grade " << grade << " at Osceola High" << endl
return 0;
}
|
When compiled i got three errors I cant find um so let me know if you can