Hi, this is maybe my fourth program ever for progamming ever, and something is wrong with the semicolons I think within the if esle statements but when I remove them, I get errors telling me that I need them there.
I am trying to convert the numerical grades to letter grades and count the number of each (A's, B's,...ect)
#include "stdafx.h"
int main()
{
int count60 = 0, count70 = 0, count80 = 0, count90 = 0, count100 = 0, i;
Your program is missing a #include<stdio.h> at the beginning and #include "stdafx.h" is not a standard library in C++ and I see it is not needed in your program.