As I know of at least one other beginning programmer here, this is the place to discuss programming in general and share simple programs with others.
Deza, here it is: it calculates the average of five numbers.
(C++)
#include <iostream>
using namespace std;
int main()
{
double prinum;
double secnum;
double trinum;
double quadnum;
double quinnum;
double result;
cout << "This program will calculate the average of five numbers you enter.";
cout << "\n\n";
cout << "Enter the first number.";
cout << "\n\n ";
cin >> prinum;
cout << "\n\n";
cout << "Now enter the second number.";
cout << "\n\n ";
cin >> secnum;
cout << "\n\n";
cout << "Now enter the third number.";
cout << "\n\n ";
cin >> trinum;
cout << "\n\n";
cout << "Now enter the fourth number.";
cout << "\n\n ";
cin >> quadnum;
cout << "\n\n";
cout << "Finally, enter the fifth number.";
cout << "\n\n ";
cin >> quinnum;
cout << "\n\n";
cout << "The average of the five numbers is ";
result = (prinum + secnum + trinum + quadnum + quinnum) / 5;
cout << result;
cout << ".";
return 0;
}