谁能帮我?我们的老师说他不想在我们的程序中使用数组列表。并且只有数组,for循环,并且只做while。该程序是一个采购程序。(添加项目,记录交易。)这是我想了解的第一步。
在这个程序中,我想正确显示项目代码和描述。例如代码=123 和描述=是的。输出显示,Item code = 123, Item descrpition = yeah.
但是一旦我说是,我又放了另一个,示例代码 = 456 和描述 = 哦。输出Item code = 123456, Item description = yeah.oh.
import java.util.Scanner;
public class Apps {
public static void main(String[] args) {
Scanner a = new Scanner(System.in);
String code = "", des = "", ans;
String[] b = new String[1];
String[] aw = new String[1];
int x;
do {
System.out.print("Item code:");
code += "" + a.next();
System.out.print("des:");
des += "" + a.next();
System.out.println("yes or no:");
ans = a.next();
}
while (ans.equals("yes"));
for (x = 0; x < 1; x++) {
b[x] = code;
aw[x] = des;
System.out.println("Item code:" + b[x]);
System.out.println("Item description:" + aw[x]);
}
}
}