//I need to write a program that calculates total calories eaten in a day using
// WHILE loop and the For loop
#include <iostream>
using namespace std;
int main()
{
int numberOfItems;
int count;
int caloriesForItem;
int totalCalories;
cout <<"How many items did you eat? ";
cin >> numberOfItems;
cout <<endl;
cout <<"Enter the number of calories in each of the ";
cout << numberOfItems << " items eaten: " <<endl;
cout << "Enter Calories for Items: ";
cin >> caloriesForItem;