Question: solve Write a statement that assigns numCoins with numNickels + numDimes. Ex: 5 nickels and 6 dimes results in 11 coins. Note: Our autograder automatically
solve
Write a statement that assigns numCoins with numNickels + numDimes. Ex: 5 nickels and 6 dimes results in 11 coins. Note: Our autograder automatically runs your program several times, trying different test values each time to ensure your program works for any values. This program is tested twice, first with numNickels = 5 and numDimes = 6, and then with numNickels = 9 and numDimes = 0. See How to Use zyBooks for info on how our automated program grader works. 703234.52591:38.qx3my7 1 import java. util. Scanner; I beat passed public class Assigningsum { public static void main(String args) { All trusts int numCoins; 6 int numNickels; 7 int numDimes; g numNickels = 5; 10 numDimes = 6; 11 12 * your solution goes here */ 13 14 System. out. print("There are "); 15 System. out . print(numcoins); 16 System. out. println(" coins"); 17 Run A No solution code provided Failed to compile AssigningSum. java:15: error: variable numCoins might not have been initialized System. out . print (numCoins) ; 1 error Note: Although the reported line number is in the uneditable part of the code, the error actually exists in your code. Tools often don't recognize the problem until reaching a later line
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
