- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当扫描仪从数组中询问一个人时,试图打印出一个人选择的城市,但我需要帮助来实现它。
// Construct a Scanner.
Scanner scanner = new Scanner(System.in);
// Not a city value.
int city = -1;
// Forever...
while (true) {
// Display the prompt.
System.out.print("Please enter a destination city (1-12)" +
"1.SFO 2.ATL 3.DET 4.LA 5.CHI 6.NJ " +
"7.LV 8.MIA 9.BOS 10.DAL 11.DC 12.NY: ");
// check for an integer.
if (scanner.hasNextInt()) {
// get the value.
city = scanner.nextInt();
} else {
if (!scanner.hasNext()) {
// no more to read.
break;
}
// toss the value.
scanner.next();
// not an integer.
continue;
}
// check the range.
if (city >= 1 && city <= 12) {
break;
}
// bad value.
city = -1;
}
scanner.close();
我需要添加什么才能从数组中返回某个数字到目前为止,如果我的代码打印出这个
0 0 0 0
1 1 50 0
2 1 35 0
3 1 55 2
4 1 110 1
5 1 65 3
6 1 80 2
7 1 70 5
8 1 105 5
9 1 105 6
10 1 90 7
11 1 155 8
12 1 100 10
并且只需要第三列中的数字即可打印出来
enter code import java.util.*;
public class path {
public static int vertex = 0;
public static void main(String[] args){
String[] cities = new String[] { "SFO", "ATL",
"DET", "LA", "CHI", "NJ", "LV", "MIA", "BOS",
"DAL", "DC", "NY" };
Scanner scanner = new Scanner(System.in); // Construct a
// Scanner.
int city = -1; // Not a city value.
while (true) { // Forever...
// Display the prompt.
System.out
.println("Please enter a destination city (1-12): ");
for (int i = 0; i < cities.length; i++) { // print the city options.
System.out.println((1 + i) + ". " + cities[i]); // 1 to cities.length
}
if (scanner.hasNextInt()) { // check for an integer.
city = scanner.nextInt(); // get the value.
} else {
scanner.next(); // toss the value.
continue; // not an integer.
}
if (city >= 1 && city <= 12) { // check the range.
break;
}
city = -1; // bad value.
}
scanner.close(); // Close the Scanner.
if (city != -1) {
System.out.println("You selected " + cities[city - 1]);
System.out.println("It will cost you");
} else {
System.out.println("No valid city");
}
int[][] destination = new int[13][4];
destination[0][0]= 0;
destination[1][0]= 1;
destination[2][0]= 2;
destination[3][0]= 3;
destination[4][0]= 4;
destination[5][0]= 5;
destination[6][0]= 6;
destination[7][0]= 7;
destination[8][0]= 8;
destination[9][0]= 9;
destination[10][0]= 10;
destination[11][0]= 11;
destination[12][0]= 12;
for(int i = 0; i < 13; i++){
destination[i][1] = 0;
}
destination[0][3] = 0;
for(int j = 1; j < 13; j++){
destination[j][2] = Integer.MAX_VALUE;
}
for(int k = 0; k < 13; k++){
destination[k][3] = 0;
}
int[][] edge = new int[13][13];
edge[0][1] = 50;
edge[0][2] = 35;
edge[1][3] = 70;
edge[1][4] = 60;
edge[1][5] = 35;
edge[2][3] = 20;
edge[2][5] = 60;
edge[2][6] = 45;
edge[3][5] = 10;
edge[4][7] = 30;
edge[5][7] = 5;
edge[5][8] = 40;
edge[6][8] = 30;
edge[6][9] = 25;
edge[7][10] = 20;
edge[8][11] = 50;
edge[9][12] = 20;
edge[10][12] = 10;
edge[11][12] = 15;
update(destination,edge);
findV(destination);
update(destination,edge);
findV(destination);
update(destination,edge);
findV(destination);
update(destination,edge);
findV(destination);
update(destination,edge);
findV(destination);
update(destination,edge);
findV(destination);
update(destination,edge);
findV(destination);
update(destination,edge);
findV(destination);
update(destination,edge);
findV(destination);
update(destination,edge);
findV(destination);
update(destination,edge);
findV(destination);
update(destination,edge);
findV(destination);
update(destination,edge);
findV(destination);
for(int i = 0; i < destination.length; i++)
{
for(int j = 0; j < destination[i].length; j++)
{
System.out.print(destination[i][j]);
if(j < destination[i].length - 1) System.out.print(" ");
}
System.out.println();
}
}
public static void findV(int[][] destination){
int min = Integer.MAX_VALUE;
for(int a = 1; a < 13; a++){
if(destination[a][1] == 0){
if(destination[a][2] < min){
min = destination[a][2];
vertex = a;
}
}
}
destination[vertex][1] = 1;
//update();
}
public static void update(int[][] destination, int[][] edge)
{
for(int x = 0; x < 13; x++){
if(edge[vertex][x] != 0 && edge[vertex][x] + destination[vertex][2] <
destination[x][2] && destination[x][1] == 0){
destination[x][2] = edge[vertex][x] + destination[vertex][2];
destination[x][3] = vertex;
}
}
}
}
最佳答案
我必须说你的代码看起来很熟悉,试试这样的东西
public static void main(String[] args) {
// First, construct the array of cities,
String[] cities = new String[] { "SFO", "ATL",
"DET", "LA", "CHI", "NJ", "LV", "MIA", "BOS",
"DAL", "DC", "NY" };
Scanner scanner = new Scanner(System.in); // Construct a
// Scanner.
int city = -1; // Not a city value.
while (true) { // Forever...
// Display the prompt.
System.out
.println("Please enter a destination city (1-12): ");
for (int i = 0; i < cities.length; i++) { // print the city options.
System.out.println((1 + i) + ". " + cities[i]); // 1 to cities.length
}
if (scanner.hasNextInt()) { // check for an integer.
city = scanner.nextInt(); // get the value.
} else {
scanner.next(); // toss the value.
continue; // not an integer.
}
if (city >= 1 && city <= 12) { // check the range.
break;
}
city = -1; // bad value.
}
scanner.close(); // Close the Scanner.
if (city != -1) {
System.out.println("You selected " + cities[city - 1]);
} else {
System.out.println("No valid city");
}
}
关于java - 如何从扫描仪中的数组打印数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20591608/
我在使用 Scanner 类中的 useDelimiter 时遇到一些问题。 Scanner sc = new Scanner(System.in).useDelimiter("-"); while(
我是 Java 新手。 我目前正在做一个业余项目;制作基于文本的游戏。我意识到使用 Switch 语句对于此类游戏非常有用。 这基本上就是它的工作原理。 我问用户,你想做什么? 吃 步行 等等 那么,
我正在尝试使用扫描仪从“p.addPoint(x,y);”形式的字符串中读取代码行 我想要的正则表达式格式是: *任何内容*.addPoint(*空格或无* 或 ,*空格或无* 到目前为止我所尝试的方
我正在使用 java Scanner 尝试从名为 Inventory.txt 的文本文件中提取产品信息。 此文件包含以下格式的产品数据: “Danelectro|Bass|D56BASS-AQUA|3
我是java初学者,我正在努力让这段代码正常工作。我正在尝试读取 CSV 文件,然后使用该数据计算平均值,然后返回平均值的最高最低值和平均值的摘要。 输入如下所示: Alicia Marks,89,9
当我进入/忽略文件 reg.txt 中的最后一个新行时,我需要一些有关退出的帮助。截至目前,当它到达最后一行时,我收到一个错误,其中不包含任何内容。 public String load() {
我的程序应该提示用户输入与参加了多少次考试相关的考试分数。然而,这工作得很好,当用户输入负的考试分数时,应该让他们再次重新进入所有三项考试。我的程序会保存任何非负面的考试,因此当您重新输入三项考试时,
这个问题已经有答案了: Scanner is skipping nextLine() after using next() or nextFoo()? (25 个回答) 已关闭 9 年前。 下面给出的
我想读取用户输入,例如:11 12 13 14 15 16 Scanner sc = new Scanner(System.in); while(sc.hasNext()){
String[] invalidChars = {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9"}; Scanner sc = ne
我有一个txt文件,每行包含两个单词,例如: USA 321 France 1009 ... Germany 902 如何在二维数组中逐字读取该文件?我有: List> temps = new Arr
我的 Java 作业有问题。我收到意外异常,特别是: java.util.NoSuchElementException: No line found 我正在使用 Scanner(System.in)
我有一个很大的困惑,当我们有 Sonar 服务器时 Sonar 扫描仪有什么用?当我使用 soarqube 服务器分析一个项目时,它进行了分析并且运行良好。我仍然很困惑为什么我们也需要扫描仪。 与ec
为什么我在递归方法中遇到无限循环,而没有机会输入任何符号来打破它? class Test { int key=0; void meth(){ System.out.println
我在运行此函数时遇到错误。它使用扫描仪在某个文件中查找单词。 这里是: public static boolean VerifyExistWord(File FileToSearch, String
各位程序员大家好。 我有一些代码,spring工具套件编辑器的响应也不同,也许你们中的一些聪明人知道为什么。 File inputFile = new File(System.getProperty(
是否可以从我的网络应用程序中使用 Flash 访问通用 twain 扫描仪,保存文件并将其上传到我的应用程序中? 我已经通过谷歌进行了一些搜索,但无法找到更多细节。是否有任何预制的解决方案,付费/免费
我试图在 float 组中引入一组 float 字: protected float[] a = new float [100]; public void setCoef(){ System.
我一直在做一项充当拼字游戏词典的编程作业。该程序接受用户的输入,并根据用户从菜单中请求的内容输出包含单词列表的文件。我遇到的问题与 Scanner.nextLine() 有关。 我不太清楚为什么,但由
我试图让程序询问百分比(等级),但我希望它在用户进行第一个输入并看到输出后再次询问。我在循环中遇到问题,因为未分配变量 myMark。 import java.util.Scanner; public
我是一名优秀的程序员,十分优秀!