Ask a New Question

Dscale

This page lists questions and answers that were posted by visitors named Dscale.

Questions

The following questions were asked by visitors named Dscale.

Write an interactive C program that will accept each student’s name an exam grades as input, determine an average grade for each student, and then display the student’s name, the individual exam grades and the calculated average. The program should allow...
9 years ago

Answers

The following answers were posted by visitors named Dscale.

#include "stdafx.h" #include <iostream> #include <iomanip> #include <string> using namespace std; int _tmain(int argc, _TCHAR* argv[]) { const int number of students = 10; const int number of scores = 6; double scores[number of scores]; double total; doub...
9 years ago
Ask a New Question
Archives Contact Us Privacy Policy Terms of Use