Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Prime Using Jave Assignment: Develop a JAVA program according to the following steps: Part A: Name this step plajava and you don't need to write
Prime
Using Jave
Assignment: Develop a JAVA program according to the following steps: Part A: Name this step plajava and you don't need to write a method other than main for this. 1) The user is asked to enter an integer and your program is to produce the reverse of that number. Example follows Please enter an integer number 2341 The reverse of 2341 is 1432 Part B Name this step p1bjava. 1) Modify the last step using a method called reverse that returns the reverse value of a given integer. Then, modify the program so that it will runs as the following: 2) The user is asked to enter two integers, say x and y, 3) So long as x is less than y, your program will dothe following: a) Find and print all prime numbers between x and y. (Need a method called isPrime that checks whether a given number is a prime or not.) b) Find and print all prime numbers that are also palindromes; c) Ask for another pair of x and y. Example follows: Please enter two integer numbers: 5 400 Prime 7 11 17 19 29 31 37 41 43 47 53 59 61 67 71 73 79 83 97 101 103 107 109 113 127 131 137 139 149 151 157 163 167 173 179 181 191 193 197 199 211 223 227 229 233 239 241 251 257 263 269 271 277 281 283 293 307 311 313 317 331 337 347 349 353 359 367 373 379 383 389 397 Palindromic Prime: 7 11 101 131 151 181 191 313 353 373 383 Please enter two integer numbers 9 1 ***Done***Step 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