我正在尝试将此程序打印出来。
Smith 1000
doe 1200
john 1400
bailey 900
potter 1600
程序本身必须使用数组我需要找到一种可能组合两个1d数组的方法,或者只是一种正确格式化的方法,以便以上述方式打印出来。
该计划:
import java.util.*;
public class TwoArrays {
static Scanner console = new Scanner(System.in);
public static void main(String[]args){
String [] name = new String[5];
int [] vote = new int[5];
String lastname;
int votecount;
int i;
for(i=0; i<name.length; i++){
System.out.println("Enter the last name of the candidate: ");
lastname = console.next();
name[i]= lastname;
System.out.println("Enter the number of votes the candidate got: ");
votecount = console.nextInt();
vote[i] = votecount;
}
String printing = Print(name);
int printing2 = Print2(vote);
}
public static String Print(String [] pname){
for (int i=0; i<pname.length; i++){
System.out.println(pname[i]+ " \n");
}
return "nothing";
}
public static int Print2(int [] pvote){
for (int i=0; i<pvote.length; i++){
System.out.println(pvote[i]+ " \n");
}
return 0;
}
}
答案 0 :(得分:2)
为此,您需要使用System.out.printf
设置合理的空格。在这里,我将%-15s
用于左对齐。您可以通过pname
尺寸轻松计算出来。
public static void print(String[] pname, int[] pvote) {
for (int i = 0; i < pname.length; i++) {
System.out.printf("%-15s %d\n", pname[i], pvote[i]);
}
}
答案 1 :(得分:0)
“只是一种正确格式化的方法,所以它以上述方式打印出来。”:
public static void Print(String [] pname, int [] votes){
for (int i=0; i<pname.length; i++){
System.out.printf("%-10s %5d\n", pname[i], votes[i]);
}
}
然后显然只调用一次,两个数组都作为参数:
Print(name, vote);
(使用最新的编辑,你得到一些很好的对齐。名称在10的字段中左对齐,数字在宽度为5的字段中右对齐。您可以在其间添加其他字符(例如,{ {1}})只需将其插入格式字符串即可。)
答案 2 :(得分:0)
for (int i=0;i<pname.length;i++) {
System.out.println(pname[i]+ " "+pvote[i]);
}
答案 3 :(得分:0)
将其添加为实例变量:
HashMap<String, Integer> candidateMap = new HashMap<String, Integer>();
然后在你的循环中:
System.out.println("Enter the last name of the candidate: ");
lastname = console.next();
System.out.println("Enter the number of votes the candidate got: ");
votecount = console.nextInt();
candidateMap = candidateMap.put(lastname, votecount);
然后你的打印方法(归功于@Masud以获得正确的打印格式):
public static void Print(){
for (String candidate : candidateMap.keySet()){
System.out.printf("%-15s %d\n", candidate, candidateMap.get(candidate));
}
}