C++ help

[COLOR=black]can anyone help me with this.[/COLOR]
[COLOR=black]Basicaly what the script does, is to ask a verb to a user and then list all the persons of the verb in the present(in french).[/COLOR]
All i want is to a make a loop that take a pronom* add it to the unchanging part of the verb and add the time part.
Like this take pronom[1] add … add lastpart[1]
anyoneknows how can i do it? my script above doesn’t work…

#include <iostream>
#include <string>
using namespace std;
void main(void)
{
string pronom1= "je ",
pronom2 = "tu ",
pronom3 = "il / elle / on ",
pronom4 = "nous ",
pronom5 = "vous ",
pronom6 = "Ils /Elles ",
terminaison1 = “e”,
terminaison2 = “es”,
terminaison3 = “e”,
terminaison4 = “ons”,
terminaison5 = “ez”,
terminaison6 = “ent”,
verbe_inf,
radical_verbe,
verbe_conj;
cout << "Entrez un verbe a l’infinitf " <<endl;
cin >> verbe_inf;
radical_verbe = verbe_inf.erase((verbe_inf.size()-2),2);
for (int i =1; i<7; i++){
verbe_conj = pronom*+ radical_verbe + terminaison*;
cout <<verbe_conj <<endl;
}