CopyPastor

Detecting plagiarism made easy.

Score: 0.817295253276825; Reported for: String similarity Open both answers

Possible Plagiarism

Reposted on 2018-05-25
by thelittlewozniak

Original Post

Original - Posted on 2018-05-24
by thelittlewozniak



            
Present in both answers; Present only in the new answer; Present only in the old answer;

So the correct code is:
#include <iostream> #include <cstdio> #include <time.h> #include <stdlib.h> using namespace std; int main() { int operation, num3, guess,num1,num2,temp; srand(time(0)); char play; do { // Generate two random single-digit integers btwn 0-9 num1 = rand() % 10; num2 = rand() % 10; // If num1 < num2, swap num1 with num2 if (num1 < num2) { temp = num1; num1 = num2; num2 = temp; } do { cout << "Choose an operation." << endl; cout << "Enter 1 to add, 2 to subtract, or 3 to multiply: " << endl; cin >> operation; if (operation > 3 || operation < 1) { cout << "Your operation choice isn't valid! Please try again, using 1, 2, or 3." << endl; cout << "Choose an operation." << endl; cout << "Enter 1 to add, 2 to subtract, or 3 to multiply: " << endl; cin >> operation; } }while(operation>3 || operation<1); switch(operation) { case 1: cout << "You chose addition." << endl; num3 = num1 + num2; do { cout << "What is " << num1 << " + " << num2 << " ?: " << endl; cin >> guess; if (guess != num3) { cout << "That is incorrect. Please try again." << endl; cout << "" << endl; } }while(guess!=num3); cout << "That is correct!" << endl; cout << "" << endl; break; case 2: cout << "You chose subtraction." << endl; num3 = num1 - num2; do { cout << "What is " << num1 << " - " << num2 << " ?: " << endl; cin >> guess; if (guess != num3) { cout << "That is incorrect. Please try again." << endl; cout << "" << endl; } }while(guess!=num3); cout << "That is correct!" << endl; cout << "" << endl; break; case 3: cout << "You chose multiplication." << endl; num3 = num1 * num2; do { cout << "What is " << num1 << " * " << num2 << " ?: " << endl; cin >> guess; if (guess != num3) { cout << "That is incorrect. Please try again." << endl; cout << "" << endl; } }while(guess!=num3); cout << "That is correct!" << endl; cout << "" << endl; break; } do { cout << "Would you like to play again? Press Y for yes or Q for quit" << endl; cin >> play; if (play != 'Y' && play != 'Q') { cout << "That is not a valid choice. Please choose Y for yes or Q to quit. " << endl; } }while(play!='Y' && play!='Q'); if (play == 'Y') { cout << "Thank you for playing! Let's play again!" << endl; cout << "" << endl; } else { cout << "Thank you for playing! See you next time!" << endl; cout << "" << endl; } }while(play=='Y'); return 0; }
It's could be better to use a switch case to select the correct operation like this:
Switch(operation) {case 1: break;} You need to add one more while too SO the correct code should be like this:
#include <iostream> #include <cstdio> #include <time.h> #include <stdlib.h> using namespace std; int main() { int operation, num3, guess,num1,num2,temp; srand(time(0)); char play; do { // Generate two random single-digit integers btwn 0-9 num1 = rand() % 10; num2 = rand() % 10; // If num1 < num2, swap num1 with num2 if (num1 < num2) { temp = num1; num1 = num2; num2 = temp; } do { cout << "Choose an operation." << endl; cout << "Enter 1 to add, 2 to subtract, or 3 to multiply: " << endl; cin >> operation; if (operation > 3 || operation < 1) { cout << "Your operation choice isn't valid! Please try again, using 1, 2, or 3." << endl; } }while(operation>3 || operation<1); switch(operation) { case 1: cout << "You chose addition." << endl; num3 = num1 + num2; cout << "What is " << num1 << " + " << num2 << " ?: " << endl; cin >> guess; if (guess != num3) { cout << "That is incorrect. Please try again." << endl; cout << "" << endl; cout << "What is " << num1 << " + " << num2 << " ?: " << endl; cin >> guess; } else if (guess == num3) { cout << "That is correct!" << endl; cout << "" << endl; } break; case 2: cout << "You chose subtraction." << endl; num3 = num1 - num2; cout << "What is " << num1 << " - " << num2 << " ?: " << endl; cin >> guess; if (guess != num3) { cout << "That is incorrect. Please try again." << endl; cout << "" << endl; cout << "What is " << num1 << " - " << num2 << " ?: " << endl; cin >> guess; } else if (guess == num3) { cout << "That is correct!" << endl; cout << "" << endl; } break; case 3: cout << "You chose multiplication." << endl; num3 = num1 * num2; cout << "What is " << num1 << " * " << num2 << " ?: " << endl; cin >> guess; if (guess != num3) { cout << "That is incorrect. Please try again." << endl; cout << "" << endl; cout << "What is " << num1 << " * " << num2 << " ?: " << endl; cin >> guess; } else if (guess == num3) { cout << "That is correct!" << endl; cout << "" << endl; } break; } do { cout << "Would you like to play again? Press Y for yes or Q for quit" << endl; cin >> play; if (play != 'Y' && play != 'Q') { cout << "That is not a valid choice. Please choose Y for yes or Q to quit. " << endl; } }while(play!='Y' && play!='Q'); if (play == 'Y') { cout << "Thank you for playing! Let's play again!" << endl; cout << "" << endl; } else { cout << "Thank you for playing! See you next time!" << endl; cout << "" << endl; } }while(play=='Y'); return 0; }

        
Present in both answers; Present only in the new answer; Present only in the old answer;