int first = 16; int second = 8; if ((first / second == 2) || (second / first == 3)) { second = 10;

EBK JAVA PROGRAMMING
9th Edition
ISBN:9781337671385
Author:FARRELL
Publisher:FARRELL
Chapter2: Using Data
Section: Chapter Questions
Problem 1CP
icon
Related questions
Question

using the given code: #include <iostream>
using namespace std;
int main()
{
int first = 16;
int second = 8;
if ((first / second == 2) || (second / first == 3))
{
second = 10;
first = 20;
}
else if ((first % second == 2 || second % first == 1))
{
second = 15;
first = 5;
}
else
{
first = -10;
second = -20;
}
cout << first << " " << second << endl;
return 0;
}

what is the output if

a. first = 16 second = 5

b. first = 26 second = 8

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps

Blurred answer
Knowledge Booster
Data members
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT
Microsoft Visual C#
Microsoft Visual C#
Computer Science
ISBN:
9781337102100
Author:
Joyce, Farrell.
Publisher:
Cengage Learning,
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning