- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
3 Posted Topics
public class abcd { int count=1; public void show() { int[] numbers ={1,2,3,4,5}; for (int item : numbers) { for(int initem=1;initem<=item;initem++)//This loop is responsible for printing values multiple times { System.out.print(item); //count++;//set counter here you can see how much time it is executed. } System.out.println();//For new line } //Then print …
//The posiblities that either you have been used deprecated methods or you didn't have catched your exceptions during stream reading from console. //So here is the example that might give you some sort of help. import java.io.*; public class abcd { public String removeIs(String input) { //String check = input.replaceAll("[^/+/-/*//^0-9/-]+", …
write a program to print the highest palindrome value that is the multiplication of two numbers lies between 100 to 1000.
The End.
csk19