#include <iostream>
#include <string>
using namespace std;
int main() {
//Declaring values.
string oneWord, twoWord, threeWord, fourWord, fiveWord, fullWord;
//Assigning values
oneWord = "One";
twoWord = "Two";
threeWord= "Three";
fourWord = "Four";
fiveWord = "Five";
// Now we will define the full word
fullWord = oneWord + ", " + twoWord + ", " + threeWord + ", " + fourWord + ", " + fiveWord;
cout << fullWord <<".\n";
This is the program I have written I know it is simple but I have no programming experience and my professor is no help, I need it to print out backwards if that makes any sense so instead of one, two, three, four, five. I need it to be five, four, three, two, one. I believe it takes sometype of loop but I am not sure on how to do it. any help would be greatly appreciated. Thanks in advance. John