please do its main part. #include using namespace std; int calc( int x, int &three, int &five ) { if(x == 1 || x == 2 || x == 4 || x == 7) return -1; else if(x == 5) { three = 0; five = 1; } else if(x == 8) { three = 1; five = 1; } else if( (x % 3) == 0) { three = x / 3; five = 0; } else if( (x % 3) == 1) { three = ((x - 1) / 3) - 3; five = 2; } else // (x % 3) == 2 { three = ((x - 2) / 3) - 1; five = 1; } return five + three; } int main() { return 0; }

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

please do its main part.

#include <iostream>

using namespace std;
int calc( int x, int &three, int &five )
{
if(x == 1 || x == 2 || x == 4 || x == 7)
return -1;
else if(x == 5)
{
three = 0;
five = 1;
}
else if(x == 8)
{
three = 1;
five = 1;
}
else if( (x % 3) == 0)
{
three = x / 3;
five = 0;
}
else if( (x % 3) == 1)
{
three = ((x - 1) / 3) - 3;
five = 2;
}
else // (x % 3) == 2
{
three = ((x - 2) / 3) - 1;
five = 1;
}

return five + three;
}
int main()
{

return 0;
}

Expert Solution
steps

Step by step

Solved in 3 steps with 4 images

Blurred answer
Knowledge Booster
Function Arguments
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