Important alert: (current site time 7/15/2013 4:14:32 AM EDT)
 

VB icon

Single Grade Program

Email
Submitted on: 6/10/2013 5:20:40 PM
By: Anderson Reyes 
Level: Beginner
User Rating: Unrated
Compatibility: C++ (general), Microsoft Visual C++
Views: 1264
(About the author)
 
     It takes in a number(grade) and it give you back a letter grade! This is my very first program and great feedback would be appreciated on how I can improve my code and as a programmer!
 
code:
Can't Copy and Paste this?
Click here for a copy-and-paste friendly version of this code!
 
Terms of Agreement:   
By using this code, you agree to the following terms...   
  1. You may use this code in your own programs (and may compile it into a program and distribute it in compiled format for languages that allow it) freely and with no charge.
  2. You MAY NOT redistribute this code (for example to a web site) without written permission from the original author. Failure to do so is a violation of copyright laws.   
  3. You may link to this code from another website, but ONLY if it is not wrapped in a frame. 
  4. You will abide by any additional copyright restrictions which the author may have placed in the code or code's description.
				
//**************************************
// Name: Single Grade Program
// Description:It takes in a number(grade) and it give you back a letter grade!
This is my very first program and great feedback would be appreciated on how I can improve my code and as a programmer!
// By: Anderson Reyes
//
//This code is copyrighted and has// limited warranties.Please see http://www.Planet-Source-Code.com/vb/scripts/ShowCode.asp?txtCodeId=14203&lngWId=3//for details.//**************************************

#include <iostream>
using namespace std;
int main()
{
	int Grade;
	cout <<"Please Enter your Grade: " << endl;
	cin >> Grade; //THE USER INPUT FOR THE GRADE(NUMBER)
	
	//THE LOGIC FOR THE NUMBER THAT YOU INPUT. ANY NUMBER LOWER THAN A 59 WILL RESULT IN AN F
	if(Grade == 100){
		cout << "You Have Perfect Grade!! a A+" << endl;
	}
	else if(Grade >= 90 && Grade <= 99){
		cout << "Your grade is a A" << endl;
	}
	else if(Grade >= 80 && Grade <= 89){
		cout << "Your grade is a B" << endl;
	}
	else if (Grade >= 70 && Grade <= 79){
		cout << "Your grade is a C" << endl;
	}
	else if (Grade >= 60 && Grade <= 69){
		cout << "Your grade is a D" << endl;
	}
	else if(Grade <= 59){
		cout << "YOU FAILED!!!......OUCH." << endl;
	}
	else{
		cout << "Error" << endl;
	}
	system("pause");
	return 0;
}


Report Bad Submission
Use this form to tell us if this entry should be deleted (i.e contains no code, is a virus, etc.).
This submission should be removed because:

Your Vote

What do you think of this code (in the Beginner category)?
(The code with your highest vote will win this month's coding contest!)
Excellent  Good  Average  Below Average  Poor (See voting log ...)
 

Other User Comments

 There are no comments on this submission.
 

Add Your Feedback
Your feedback will be posted below and an email sent to the author. Please remember that the author was kind enough to share this with you, so any criticisms must be stated politely, or they will be deleted. (For feedback not related to this particular code, please click here instead.)
 

To post feedback, first please login.