Answered step by step
Verified Expert Solution
Question
1 Approved Answer
please solve q1 and q2 in java using netbeans Q1). Write a Java program that prompts the user to enter an Integer val and a
please solve q1 and q2 in java using netbeans
Q1). Write a Java program that prompts the user to enter an Integer val and a sequence of Integers ends with -1. The program displays the number of occurrences of val in the sequence. (30 pta) Sample run of the program Enter an integer: 7 Enter an integer (-1 to end) : 3 Enter an integer (-1 to end) : 7 Enter an integer (-1 to end) : 4 Enter an integer (-1 to end) : 5 Enter an integer (-1 to end) : 7 Enter an integer (-1 to end) : 7 Enter an integer (-1 to end) : 3 Enter an integer (-1 to end): -1 The number of occurrences of 7 in the sequence is 3. Q2). Write a Java program that prompts the user to enter an integer. The program calculates and displays the sum of its even digits of the entered integer. For example, if the user enters 265, the program displays 8 (8 = 2+6). Sample run of the program Enter an integer: 265 The sum of the even digits of 265 is 8 Good LuckStep by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started