#include #include #include using namespace std; int main() { srand(time(0)); int nbAleatoire (int min, int max) ; char liste1[][1000]={"ressembler","sembler","menacer","entraver","empecher","dejouer","s efforcer", "retrecir un fosse"}; char liste2[][1000]={"look like","seem","threaten","hamper","stymie","thwart","strive","narrow a gap"}; int x = rand() % 8; int guess; while(1) { srand(time(0)); system("CLS") ; cout << "Traduction de : "; cout << liste1[x] << endl ; cin >> guess; cout << liste2[x] << endl ; cin.clear(); fflush(stdin); x = rand() % 8; system("pause"); } system("pause"); return 0;}