Scenario: There are 1 to 100 numbers. Each number should be
keep in the each column like from A column to Z column ie 1
to 26. From 27 to 52 should be in 2nd row in the excel
sheet. This has to be continue till 100. How do you write
Java program and what are various methods.
Answer Posted / vishal
public class NumberPlacing {
int k=0;
int n=4;
int val=0;
int[]a=new int[101];
public void printInTabularForm(){
int noOfRows = 100/26;
int rowStart = 1;
int setEnd = 26;
for(int i=rowStart; i<=setEnd; i++){
System.out.print(i+"\t");
if(i == 100){
break;
}else if(i==setEnd){
rowStart = i;
setEnd = i+26;
System.out.println();
}
}
}
public static void main(String args[]){
NumberPlacing num=new NumberPlacing();
num.printInTabularForm();
}
}
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Is object a data type in java?
Variables used in a switch statement can be used with which datatypes?
What are advantages of exception handling in java?
What is final?
What is the java project architecture?
What is the difference between multiple processes and multiple threads?
What are the different ways to handle exceptions?
What is the difference between assignment and initialization?
State some advantages of java?
what is object slice?
What is public static?
What is scanner in java?
How java enabled high performance?
What are the advantages of functions?
How are destructors defined in java?