作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
<分区>
开发一个自上而下的设计并编写一个程序,以逐个农场为合作农场组制作美味爆米花生产的条形图。
例如,给定输入文件
Orville’s Acres, 114.8 43801
Hoffman’s Hills, 77.2 36229
Jiffy Quick Farm, 89.4 24812
Jolly Good Plantation, 183.2 104570
Organically Grown Inc., 45.5 14683
输出将是:
Popcorn Co-op
Production in Hundreds
of Pint Jars per Acre
Farm Name 1 2 3 4 5 6
---|---|---|---|---|---|
Orville's Acres *************** |
Hoffman's Hills ****************** |
Jiffy Quick Farm *********** |
Jolly Good Plantation *******************#**
Organically Grown Inc. ************ |
这是我已经运行并打印正确格式的代码,但它有异常错误。我试图将一个字符串分成农场名称,然后是双英亩,最后是一个 int jar 。输入文件是
Orville’s Acres, 114.8 43801
Hoffman’s Hills, 77.2 36229
Jiffy Quick Farm, 89.4 24812
Jolly Good Plantation, 183.2 104570
Organically Grown Inc., 45.5 14683
所有空格的原因是我希望它只读取包含数据的行。
这是我的源代码
import java.util.Scanner;
import java.io.*;
public class Popcorn
{
public static void main(String args[])throws Exception
{
printHeading();
System.out.print("Input file name you want to read from: ");
Scanner in = new Scanner(System.in);
String fileName = in.next(); //declares fileName a string that uses in as input
Scanner input = new Scanner(new FileReader(fileName)); //Declares input as the fileName and reads the file in
int jars;
double acres;
String amount;
String farmName;
System.out.println();
System.out.println("\t\t\tPopcorn Co-op");
System.out.println();
System.out.println("\t\t\t\tProduction in Hundreds");
System.out.println("\t\t\t\tof Pint Jars per Acre");
System.out.println("Farm Name\t\t\t 1 2 3 4 5 6");
System.out.println("\t\t\t\t---|---|---|---|---|---|");
while (input.hasNextLine())
{
String inputLine = input.nextLine();
if (inputLine.isEmpty())
{
}
else
{
farmName = inputLine.substring(0,inputLine.indexOf(','));
String inputLine2 = inputLine.substring(inputLine.indexOf(','),inputLine.length());
Scanner line = new Scanner(inputLine2);
acres = line.nextDouble();
jars = line.nextInt();
System.out.println(farmName + jars + acres);
}
}
}
private static void printHeading(){
System.out.println("Name"); //this assigns what printHeading will print
System.out.println("CSC 201-55468 Section 01PR");
System.out.println("Fall 2012");
System.out.println("Popcorn Project");
System.out.println();
}
}
我想在带有容器的单个节点中配置数据库场。我的想法是使用子域访问每个数据库,例如 mysql1.example.com:3306、mysql2.example.com:3306、mysql3.examp
我们有使用“NT Authority\Network Service”的网站。 Response.Write(WindowsIdentity.GetCurrent().Name); 我们目前正在使用以
这是个新手,如果这是一个愚蠢的问题,我深表歉意。我在 iPad Mini 2 和 iPad Air 1 上使用 Swift Playground Level 1。 我到达了 Gem Farm,现在 f
我是一名优秀的程序员,十分优秀!