Quantcast
Channel: Programmers Heaven Forums RSS Feed
Viewing all articles
Browse latest Browse all 2703

Sentence Generator using arrays C++

$
0
0
I'm having trouble trying to figure out this program could anyone help?
Here's the code I've written so far

#include <iostream>
#include <string>
#include <cstdlib>
#include <ctime>


using namespace std;
void sentenceGenerator (char noun[], char verb[], char subject[])


int main()
{

const int MAX_SENTENCE = 5 ;
string sentence[MAX_SENTENCE] ;

char noun[5] = {"Dog", "He", "She", "Bill", "Jane", } ;
char verb[5] = {"Hops", "Runs", "Hugs", "Jumps", "Skips", } ;
char subject[5] = {"Pond", "Road", "Bill" ,"Jane", "Spike", } ;

srand(static_cast<unsigned int>(time(0))));
int randomChar = rand();

cout << "The sentence: \n" ;
for (int i = 0; i < sentence ; ++i)
{
cout << sentence[i] << endl ;
}

return 0;
}



Viewing all articles
Browse latest Browse all 2703

Trending Articles