- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
所以我正在编写一个测验程序,其中包含不确定的问题数量(用 Java),并且我在完成以下事情时遇到问题:
1) 从文件加载测验问题并存储在数组列表中并访问它(需要帮助!)2)正确答案不被接受 - 给我错误(逻辑错误)3) 并未显示所有答案选项
代码如下:
import java.io.*;
import java.util.*;
import java.text.*;
import java.math.*;
public class Quiz {
public void writeFile() {
Question qn = new Question();
try {
PrintWriter out = new PrintWriter("quiz.txt");
out.println(qn.Question);
out.println(qn.numberOfChoices);
qn.answerChoices = new String[qn.numberOfChoices];
for (int i = 0; i < qn.numberOfChoices; i++) {
out.println(qn.answerChoices[i]);
}
out.println(qn.correctAnswer);
out.println(qn.numOfTries);
out.println(qn.numOfCorrectTries);
out.close();
} catch (IOException f) {
System.out.println("Error.");
}
qn.getQuestion();
}
public void readFile() {
File file = new File ("quiz.txt");
boolean exists = file.exists();
Quiz q = new Quiz();
Question a = new Question();
List<String> question = new ArrayList<String>();
String[] answerChoices = a.answerChoices;
try {
if (exists == true) {
Scanner s = new Scanner(file);
a.Question = s.nextLine();
a.numberOfChoices = s.nextInt();
a.answerChoices = new String[a.numberOfChoices];
for (int i = 0; i < a.numberOfChoices; i++) {
a.answerChoices[i] = s.nextLine();
}
s.nextLine();
a.correctAnswer = s.nextInt();
a.numOfTries = s.nextInt();
a.numOfCorrectTries = s.nextInt();
a.getQuestion();
} else {
q.writeFile();
}
} catch (IOException e) {
System.out.println("File not found.");
}
}
public static void main (String[] args) {
Scanner in = new Scanner(System.in);
Quiz qz = new Quiz();
Question b = new Question();
int Selection;
List<String> question = new ArrayList<String>();
System.out.println("Welcome to the Quiz Program! Good luck!");
do {
qz.readFile();
System.out.println("Your answer?: ");
Selection = in.nextInt();
if (Selection == b.correctAnswer) {
b.numOfCorrectTries++;
b.getQuestion();
} else {
b.getQuestion();
}
} while (Selection < b.numberOfChoices);
while (Selection > b.numberOfChoices || Selection < 0) {
System.out.println("Error. Try again");
System.out.println("Your answer?: ");
Selection = in.nextInt();
}
}
}
和问题类别:
import java.io.*;
import java.util.*;
import java.text.*;
import java.math.*;
public class Question {
int correctAnswer;
int numOfTries;
int numOfCorrectTries;
int numberOfChoices;
String Question;
String[] answerChoices;
public Question() {
}
public void getQuestion() {
System.out.println("Question: " + Question);
System.out.println("Answer: ");
for (int i = 0; i < numberOfChoices; i++) {
System.out.println(answerChoices[i]);
}
}
public double getPercentageRight() {
double percentageRight = (numOfCorrectTries / numOfTries) * 100;
percentageRight = Math.round(percentageRight * 100);
percentageRight = percentageRight / 100;
return percentageRight;
}
}
测验.TXT:
How many licks does it take to get to the tootsie roll center of a
tootsie pop?
4
one
two
three
four
2
14
5
What is your name?
3
Arthur, King of the Britons
Sir Lancelot the Brave
Sir Robin the Not-Quite-So-Brave-As-Sir Lancelot
0
14
6
Who's on first?
5
What
Why
Because
Who
I don't know
3
14
7
Which of the following is a terror of the fire swamp?
4
Lightning sand
Flame spurt
R.O.U.S.
All of the above
3
14
4
Who is the all-time greatest pilot?
6
Manfred von Richthofen
Chuck Yeager
Hiraku Sulu
Luke Skywalker
Kara Thrace
Charles Lindbergh
4
14
9
最佳答案
一些问题:
您的List<String> question = new ArrayList<String>();
应该是类似 List<Question> questionBank = new ArrayList<Question>();
因为将所有内容都保存为字符串(而不是 Question 对象)会更加困惑。名称questionBank
也比 question
更具描述性阅读代码时。我还建议使用 questionBank
作为类变量,因此可以在您的 Quiz
中轻松访问它类(class)。
您从未将问题添加到 ArrayList 中,但我怀疑您已经知道这一点,并且在解决其他问题时它的优先级较低。
您的Question
类(class)也有点不合常规。更好的结构方式可能是这样的:
public class Question {
private int correctAnswer;
private int numOfTries;
private int numOfCorrectTries;
private String question;
private String[] answerChoices;
public Question(String question, String[] answerChoices,
int correctAnswer, int numOfTries, int numOfCorrectTries) {
this.question = question;
this.answerChoices = answerChoices;
this.correctAnswer = correctAnswer;
this.numOfTries = numOfTries;
this.numOfCorrectTries = numOfCorrectTries;
}
public void getQuestion() {
System.out.println("Question: " + question);
System.out.println("Answer: ");
for (int i = 0; i < answerChoices.length; i++) {
System.out.println(answerChoices[i]);
}
}
public double getPercentageRight() {
double percentageRight = (numOfCorrectTries / numOfTries) * 100;
percentageRight = Math.round(percentageRight * 100);
percentageRight = percentageRight / 100;
return percentageRight;
}
}
我删除了 numberOfChoices
的变量因为这与 answerChoices.length
相同。我还重命名了你的Question
至question
因为Java中的变量通常遵循驼峰命名法。我不确定其他方法的用途或它们应如何显示输出,所以我大多不理会它们。
为了读取文件,我认为您可以执行与您所拥有的类似的操作,但我将发布符合 Question
的新构造函数的代码。类。
private void addQuestions() {
File quizText = new File("quiz.txt");
try {
Scanner fileIn = new Scanner(quizText);
while (fileIn.hasNextLine()) {
String question = fileIn.nextLine();
int numberOfAnswers = fileIn.nextInt();
fileIn.nextLine();
String[] answers = new String[numberOfAnswers];
for (int i = 0; i < numberOfAnswers; i++) {
answers[i] = fileIn.nextLine();
}
int correctAnswer = fileIn.nextInt();
int numOfTries = fileIn.nextInt();
int numOfCorrectTries = fileIn.nextInt();
fileIn.nextLine();
Question nextQuestion =
new Question(question, answers, correctAnswer, numOfTries, numOfCorrectTries);
questionBank.add(nextQuestion);
}
fileIn.close();
} catch (IOException e){
e.printStackTrace();
System.out.println("File Not Found.");
return;
}
}
我还将变量设为私有(private),但您可以为它们创建自定义 getter,以防止从外部直接访问(和/或更改)它们。使用此代码,我能够创建一个包含所有五个问题的问题库,并显示正确的答案以及所有可能的选择,因此希望它能为您指明正确的方向。
关于java - 从文件加载到数组列表时出现问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36232097/
SQLite、Content provider 和 Shared Preference 之间的所有已知区别。 但我想知道什么时候需要根据情况使用 SQLite 或 Content Provider 或
警告:我正在使用一个我无法完全控制的后端,所以我正在努力解决 Backbone 中的一些注意事项,这些注意事项可能在其他地方更好地解决......不幸的是,我别无选择,只能在这里处理它们! 所以,我的
我一整天都在挣扎。我的预输入搜索表达式与远程 json 数据完美配合。但是当我尝试使用相同的 json 数据作为预取数据时,建议为空。点击第一个标志后,我收到预定义消息“无法找到任何内容...”,结果
我正在制作一个模拟 NHL 选秀彩票的程序,其中屏幕右侧应该有一个 JTextField,并且在左侧绘制弹跳的选秀球。我创建了一个名为 Ball 的类,它实现了 Runnable,并在我的主 Draf
这个问题已经有答案了: How can I calculate a time span in Java and format the output? (18 个回答) 已关闭 9 年前。 这是我的代码
我有一个 ASP.NET Web API 应用程序在我的本地 IIS 实例上运行。 Web 应用程序配置有 CORS。我调用的 Web API 方法类似于: [POST("/API/{foo}/{ba
我将用户输入的时间和日期作为: DatePicker dp = (DatePicker) findViewById(R.id.datePicker); TimePicker tp = (TimePic
放宽“邻居”的标准是否足够,或者是否有其他标准行动可以采取? 最佳答案 如果所有相邻解决方案都是 Tabu,则听起来您的 Tabu 列表的大小太长或您的释放策略太严格。一个好的 Tabu 列表长度是
我正在阅读来自 cppreference 的代码示例: #include #include #include #include template void print_queue(T& q)
我快疯了,我试图理解工具提示的行为,但没有成功。 1. 第一个问题是当我尝试通过插件(按钮 1)在点击事件中使用它时 -> 如果您转到 Fiddle,您会在“内容”内看到该函数' 每次点击都会调用该属
我在功能组件中有以下代码: const [ folder, setFolder ] = useState([]); const folderData = useContext(FolderContex
我在使用预签名网址和 AFNetworking 3.0 从 S3 获取图像时遇到问题。我可以使用 NSMutableURLRequest 和 NSURLSession 获取图像,但是当我使用 AFHT
我正在使用 Oracle ojdbc 12 和 Java 8 处理 Oracle UCP 管理器的问题。当 UCP 池启动失败时,我希望关闭它创建的连接。 当池初始化期间遇到 ORA-02391:超过
关闭。此题需要details or clarity 。目前不接受答案。 想要改进这个问题吗?通过 editing this post 添加详细信息并澄清问题. 已关闭 9 年前。 Improve
引用这个plunker: https://plnkr.co/edit/GWsbdDWVvBYNMqyxzlLY?p=preview 我在 styles.css 文件和 src/app.ts 文件中指定
为什么我的条形这么细?我尝试将宽度设置为 1,它们变得非常厚。我不知道还能尝试什么。默认厚度为 0.8,这是应该的样子吗? import matplotlib.pyplot as plt import
当我编写时,查询按预期执行: SELECT id, day2.count - day1.count AS diff FROM day1 NATURAL JOIN day2; 但我真正想要的是右连接。当
我有以下时间数据: 0 08/01/16 13:07:46,335437 1 18/02/16 08:40:40,565575 2 14/01/16 22:2
一些背景知识 -我的 NodeJS 服务器在端口 3001 上运行,我的 React 应用程序在端口 3000 上运行。我在 React 应用程序 package.json 中设置了一个代理来代理对端
我面临着一个愚蠢的问题。我试图在我的 Angular 应用程序中延迟加载我的图像,我已经尝试过这个2: 但是他们都设置了 src attr 而不是 data-src,我在这里遗漏了什么吗?保留 d
我是一名优秀的程序员,十分优秀!