Answer: -17
Explanation:
Our random number is 17. Let's go through line by line.
- value is a random number picked which is 17
- valueB = 17 / 2 = 8.5
- If value is greater than 0 AND value has a remainder of 1, we will set the value to value* -1.
- Value is now 17 * -1 = -17
Let's quickly calculate value mod 2. 17 % 2 = is 1. If you're wondering how we did that, the remainder after dividing 8 into 17 twice is 1, because 17 - 16 = 1.
We stop after line 4 because we stop the conditional statement after one condition is filled.
import java.util.Scanner;
public class Eggs {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
System.out.println("How many eggs?");
int eggs = scan.nextInt();
int dozens = eggs / 12, ind = eggs - (dozens*12);
System.out.println("You ordered "+eggs+" eggs. That's "+dozens+" at $3.25 per dozen and "+ind+" loose eggs at 45 cents each for a total of $"+((dozens*3.25)+(ind*0.45))+".");
}
}
I hope this helps!
#include <iostream>
#include <fstream>
using namespace std;
int main(){
int x, sum=0;
ifstream f("numbers.txt");
while(!f.eof()){
f >> x;
sum +=x;
}
cout << "Sum : " << sum;
}
<em />
<em>This is a C++ program.</em>
<em>Next time be more precise on the programming language you want</em>
Answer: Captive product
Explanation:Captive products are the products that are manufactured for the purpose of being used with other core product.These product are made for the increment of the revenue by the sellers.Generally it is seen that captive products are high priced than the core product .Thus razor is supposed to be used with shaving cream/foam cream , therefore it is a captive product.
.