Warning: foreach() argument must be of type array|object, bool given in /var/www/html/web/app/themes/studypress-core-theme/template-parts/header/mobile-offcanvas.php on line 20

Problem 27

Write equivalent compound statements if possible. a. \(\quad x=2 * x\) b. \(x=x+y-2\) c. \(\quad\) sum \(=\) sum \(+\) num d. \(\quad z=z * x+2 * z\) e. \(y=y /(x+5)\)

Problem 28

Write the following compound statements as equivalent simple statements. a. \(\quad x+=5-z\) b. \(\quad y^{*}=2 * x+5-z\) c. \(\quad w+=2 * z+4\) d. \(x-z+y-t\) e. sum \(+=\) num

Problem 29

Suppose \(a, b,\) and \(c\) are int variables and \(a=5\) and \(b=6 .\) What value is assigned to each variable after each statement executes? If a variable is undefined at a particular statement, report UND (undefined). a = (b++) + 3; __ __ __ c = 2 * a + (++b); __ __ __ b = 2 * (++c) - (a++);

Problem 30

Suppose a, b, and sum are int variables and \(\mathrm{c}\) is a double variable. What value is assigned to each variable after each statement executes? Suppose \(a=3\) \(b=5,\) and \(c=14.1\) sum = a + b + c; ___ ___ ___ ___ c /= a; ___ ___ ___ ___ b += c - a; ___ ___ ___ ___ a *= 2 * b + c;

Problem 31

include using namespace std; const int NUM = 10; const double X = 20.5; int main() { in… # What is printed by the following program? Suppose the input is: 20 15 #include using namespace std; const int NUM = 10; const double X = 20.5; int main() { int a, b; double z; char grade; a = 25; cout << "a = " << a << endl; cout << "Enter two integers: "; cin >> a >> b; cout << endl; cout << "The numbers you entered are " << a << " and " << b << endl; z = X + 2 * a - b; cout << "z = " << z << endl; grade = 'A'; cout << "Your grade is " << grade << endl; a = 2 * NUM + z; cout << "The value of a = " << a << endl; return 0; }

Problem 32

include #include using namespace std; const int PRIME_NUM = 11; int ma… # What is printed by the following program? Suppose the input is: Miller 34 340 #include #include using namespace std; const int PRIME_NUM = 11; int main() { const int SECRET = 17; string name; int id; int num; int mysteryNum; cout << "Enter last name: "; cin >> name; cout << endl; cout << "Enter a two digit number: "; cin >> num; cout << endl; id = 100 * num + SECRET; cout << "Enter a positive integer less than 1000: "; cin >> num; cout << endl; mysteryNum = num * PRIME_NUM - 3 * SECRET; cout << "Name: " << name << endl; cout << "Id: " << id << endl; cout << "Mystery number: " << mysteryNum << endl; return 0;

Problem 33

include #include using namespace std; const double X = 13.45; const int Y=34; const … # Rewrite the following program so that it is properly formatted. #include #include using namespace std; const double X = 13.45; const int Y=34; const char BLANK= ' '; int main() {string firstName,lastName;int num; double salary; cout<<"Enter first name: "; cin>> firstName; cout<>lastName;cout<>num;cout<

Access millions of textbook solutions in one place

  • Access over 3 million high quality textbook solutions
  • Access our popular flashcard, quiz, mock-exam and notes features
  • Access our smart AI features to upgrade your learning
Get Vaia Premium now
Access millions of textbook solutions in one place

Recommended explanations on Computer Science Textbooks