grisha83 26 Junior Poster in Training

I asked for help not for giving me a hard time
but here is what i've got so far

// File:
// (description)
//
// Input:
// Output
//--------------------------------
// Class: CS210 Instructor: Ravi Gandham
// Assignment:  Date Assigned:
// Programmer:  Date Submitted:


#include<iostream>
#include <string>
using namespace std;


int main()
{
string word1;
string word2;
string word3;
string word4;
string stringEval;


cout << "Enter four words using spaces between them: " << endl;
cin >> word1 >> word2 >> word3 >> word4;


if (word1 > word2){
cout << "....." << word1;}
else
cout << "....." << word2;


if (word3 > word4){
cout << "....." << word3;}
else cout << "...." << word4;


/*stringEval.find
if ((word1 == 'A') && (word1 == 'a'))
*/


system("pause");
return 0;
}
Salem commented: a) you should have posting this first then, and b) it's about time you learnt about code tags -4