//* Write a program where the user is prompted to enter a sentence *
//* or phrase. Then display each word of the sentence on a new *
//* line. *
//* *
//* EXAMPLE: If the user entered *
//* THE RAIN IN SPAIN FALLS MAINLY ON THE PLAIN *
//* the output would be *
//* THE *
//* RAIN *
//* IN *
//* SPAIN *
//* FALLS *
//* MAINLY *
//* ON *
//* THE *
//* PLAIN
#include<iostream>
using namespace std;
int main()
{//top of main
//declare variables local to main
int x,i;
char phrase[50]="\0";
cout<<"Please enter a centence or a phrase!";
cin.get(phrase,49,'\n');