I need help with my code... my desired out put should be
1 2 3
_______
1|1 2 3
2|2 4 6
can someone help me on how to add the header and the other column at the right side area... thanks!!
Type: Posts; User: clevel211
I need help with my code... my desired out put should be
1 2 3
_______
1|1 2 3
2|2 4 6
can someone help me on how to add the header and the other column at the right side area... thanks!!
so do i have to use 1 dimensional array? and did i put it in the right place?
import java.io.*;
public class Test {
public String name;
public String address;
public String number;
public String email;
//Accessor methods
public String getName(){
import java.io.*;
import java.text.DecimalFormat;
public class AddressBook{
public AddressBook(){
}
DecimalFormat al = new DecimalFormat("#.##");
private String name="";
private...
public class StudentRecord{
private String name;
private String address;
private int age;
private double mathGrade;
private double englishGrade;
private double...
Thanks.. I already done it..
Thanks for the help
I need help with this code, my desired output is supposed to be like this
Input an integer:
1
2
3
4
5
6
7