- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在制作一个多项选择问答游戏,但我需要将这张表的 20 个问题随机化,每次我再次按下播放键时,都会弹出一个新问题。我应该使用什么代码
public class TriviaQuizHelper extends SQLiteOpenHelper {
Context context;
private static final String DATABASE_NAME = "DATABASEQUIZ";
private static final int DATABASE_VERSION = 17;
private static final String TABLE_NAME = "TRIVIAQUIZ";
private static final String UID = "_UID";
private static final String QUESTION = "QUESTION";
private static final String OPTA = "OPTA";
private static final String OPTB = "OPTB";
private static final String OPTC = "OPTC";
private static final String OPTD = "OPTD";
private static final String ANSWER = "ANSWER";
private static final String CREATE_TABLE = "CREATE TABLE " + TABLE_NAME + " ( " + UID + " INTEGER PRIMARY KEY AUTOINCREMENT , " + QUESTION + " VARCHAR(255), " + OPTA + " VARCHAR(255), " + OPTB + " VARCHAR(255), " + OPTC + " VARCHAR(255), " + OPTD + " VARCHAR(255), " + ANSWER + " VARCHAR(255));";
private static final String DROP_TABLE = "DROP TABLE IF EXISTS " + TABLE_NAME;
public TriviaQuizHelper(Context context) {
super(context, DATABASE_NAME, null, DATABASE_VERSION);
this.context = context;
}
@Override
public void onCreate(SQLiteDatabase sqLiteDatabase) {
sqLiteDatabase.execSQL(CREATE_TABLE);
}
@Override
public void onUpgrade(SQLiteDatabase sqLiteDatabase, int i, int i1) {
sqLiteDatabase.execSQL(DROP_TABLE);
onCreate(sqLiteDatabase);
}
public void allQuestion() {
TriviaQuestion q1 = new TriviaQuestion("Galileo was an Italian astronomer who developed?", "Telescope", "Airoplane", "Electricity", "Train", "Telescope");
this.insert(q1);
TriviaQuestion q2 = new TriviaQuestion("Who is the father of Geometry ?", "Aristotle", "Euclid", "Pythagoras", "Kepler", "Euclid");
this.insert(q2);
TriviaQuestion q3 = new TriviaQuestion("Who was known as Iron man of India ?", "Govind Ballabh Pant", "Jawaharlal Nehru", "Subhash Chandra Bose", "Sardar Vallabhbhai Patel", "Sardar Vallabhbhai Patel");
this.insert(q3);
TriviaQuestion q4 = new TriviaQuestion("The first woman in space was ?", "Valentina Tereshkova", "Sally Ride", "Naidia Comenci", "Tamara Press", "Valentina Tereshkova");
this.insert(q4);
TriviaQuestion q5 = new TriviaQuestion("Who is the Flying Sikh of India ?", "Mohinder Singh", "Joginder Singh", "Ajit Pal Singh", "Milkha singh", "Milkha singh");
this.insert(q5);
TriviaQuestion q6 = new TriviaQuestion("The Indian to beat the computers in mathematical wizardry is", "Ramanujam", "Rina Panigrahi", "Raja Ramanna", "Shakunthala Devi", "Shakunthala Devi");
this.insert(q6);
TriviaQuestion q7 = new TriviaQuestion("Who is Larry Pressler ?", "Politician", "Painter", "Actor", "Tennis player", "Politician");
this.insert(q7);
TriviaQuestion q8 = new TriviaQuestion("Michael Jackson is a distinguished person in the field of ?", "Pop Music", "Jounalism", "Sports", "Acting", "Pop Music");
this.insert(q8);
TriviaQuestion q9 = new TriviaQuestion("The first Indian to swim across English channel was ?", "V. Merchant", "P. K. Banerji", "Mihir Sen", "Arati Saha", "Mihir Sen");
this.insert(q9);
TriviaQuestion q10 = new TriviaQuestion("Who was the first Indian to make a movie?", "Dhundiraj Govind Phalke", " Asha Bhonsle", " Ardeshir Irani", "V. Shantaram", "Dhundiraj Govind Phalke");
this.insert(q10);
TriviaQuestion q11 = new TriviaQuestion("Who is known as the ' Saint of the gutters ?", "B.R.Ambedkar", "Mother Teresa", "Mahatma Gandhi", "Baba Amte", "Mother Teresa");
this.insert(q11);
TriviaQuestion q12 = new TriviaQuestion("Who invented the famous formula E=mc^2", "Albert Einstein", "Galilio", "Sarvesh", "Bill Gates", "Albert Einstein");
this.insert(q12);
TriviaQuestion q13 = new TriviaQuestion("Who is elected as president of us 2016", "Donald Trump", "Hilary Clinton", "Jhon pol", "Barack Obama", "Donald Trump");
this.insert(q13);
TriviaQuestion q14 = new TriviaQuestion("Who was the founder of company Microsoft", "Bill Gates", "Bill Clinton", "Jhon rio", "Steve jobs", "Bill Gates");
this.insert(q14);
TriviaQuestion q15 = new TriviaQuestion("Who was the founder of company Apple ?", "Steve Jobs", "Steve Washinton", "Bill Gates", "Jobs Wills", "Steve Jobs");
this.insert(q15);
TriviaQuestion q16 = new TriviaQuestion("Who was the founder of company Google ?", "Steve Jobs", "Bill Gates", "Larry Page", "Sundar Pichai", "Larry Page");
this.insert(q16);
TriviaQuestion q17 = new TriviaQuestion("Who is know as god of cricket ?", "Sachin Tendulkar", "Kapil Dev", "Virat Koli", "Dhoni", "Sachin Tendulkar");
this.insert(q17);
TriviaQuestion q18 = new TriviaQuestion("who has won ballon d'or of 2015 ?", "Lionel Messi", "Cristiano Ronaldo", "Neymar", "Kaka", "Lionel Messi");
this.insert(q18);
TriviaQuestion q19 = new TriviaQuestion("who has won ballon d'or of 2014 ?", "Neymar", "Lionel Messi", "Cristiano Ronaldo", "Kaka", "Cristiano Ronaldo");
this.insert(q19);
TriviaQuestion q20 = new TriviaQuestion("the Founder of the most famous gaming platform steam is ?", "Bill Cliton", "Bill Williams", "Gabe Newell", "Bill Gates", "Gabe Newell");
this.insert(q20);
}
public void insert(TriviaQuestion triviaQuestion) {
ContentValues contentvalues = new ContentValues();
/* contentvalues.put(UID,triviaQuestion.getId());*/
contentvalues.put(QUESTION, triviaQuestion.getQuestion());
contentvalues.put(OPTA, triviaQuestion.getOpta());
contentvalues.put(OPTB, triviaQuestion.getOptb());
contentvalues.put(OPTC, triviaQuestion.getOptc());
contentvalues.put(OPTD, triviaQuestion.getOptd());
contentvalues.put(ANSWER, triviaQuestion.getAnswer());
SQLiteDatabase db = this.getWritableDatabase();
db.insert(TABLE_NAME, null, contentvalues);
}
public List<TriviaQuestion> getAllQuestion() {
List<TriviaQuestion> que = new ArrayList<>();
SQLiteDatabase db = this.getWritableDatabase();
String coloumns[] = {UID, QUESTION, OPTA, OPTB, OPTC, OPTD, ANSWER};
Cursor cursor = db.query(TABLE_NAME, coloumns, null, null, null, null, null);
while (cursor.moveToNext()) {
TriviaQuestion triviaQuestion = new TriviaQuestion();
triviaQuestion.setId(cursor.getInt(0));
triviaQuestion.setQuestion(cursor.getString(1));
triviaQuestion.setOpta(cursor.getString(2));
triviaQuestion.setOptb(cursor.getString(3));
triviaQuestion.setOptc(cursor.getString(4));
triviaQuestion.setOptd(cursor.getString(5));
triviaQuestion.setAnswer(cursor.getString(6));
que.add(triviaQuestion);
}
return que;
}
}
这是我为了让上面的代码运行而进行的其他 Activity
public class TriviaQuestion extends Activity {
private int id;
private String question;
private String opta;
private String optb;
private String optc;
private String optd;
private String answer;
public TriviaQuestion(String q, String oa, String ob, String oc, String od, String ans) {
question = q;
opta = oa;
optb = ob;
optc = oc;
optd = od;
answer = ans;
}
public TriviaQuestion() {
id = 0;
question = "";
opta = "";
optb = "";
optc = "";
optd = "";
answer = "";
}
/* public int getId() {
return id;
}*/
public String getQuestion() {
return question;
}
public String getOpta() {
return opta;
}
public String getOptb() {
return optb;
}
public String getOptc() {
return optc;
}
public String getOptd() {
return optd;
}
public String getAnswer() {
return answer;
}
public void setId(int i) {
id = i;
}
public void setQuestion(String q1) {
question = q1;
}
public void setOpta(String o1) {
opta = o1;
}
public void setOptb(String o2) {
optb = o2;
}
public void setOptc(String o3) {
optc = o3;
}
public void setOptd(String o4) {
optd = o4;
}
public void setAnswer(String ans) {
answer = ans;
}
}
最佳答案
这可以通过简单地洗牌 TiviaQuestion ArrayList 来完成。
这是一个使用 String
而不是 TriviaQuestion
的例子
List<String> questions = new ArrayList<>();
questions.add("This is a question!");
questions.add("This is another question!");
questions.add("This is a third question!");
Collections.shuffle(questions);
System.out.println(questions);
输出
[This is another question!, This is a question!, This is a third question!]
关于java - 如何随机化这组问题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43101523/
我让随机数低于之前的随机数。 if Airplane==1: while icounter0: print "You have enoph fuel to get to New
是否可以生成 BigFloat 的随机数?类型均匀分布在区间 [0,1)? 我的意思是,因为 rand(BigFloat)不可用,看来我们必须使用 BigFloat(rand())为了那个结局。然而,
我正在尝试学习 Kotlin,所以我正在学习互联网上的教程,其中讲师编写了一个与他们配合良好的代码,但它给我带来了错误。 这是错误 Error:(26, 17) Kotlin: Cannot crea
是否有任何方法可以模拟 Collections.shuffle 的行为,而不使比较器容易受到排序算法实现的影响,从而保证结果的安全? 我的意思是不违反类似的契约(Contract)等.. 最佳答案 在
我正在创建一个游戏,目前必须处理一些math.random问题。 我的Lua能力不是那么强,你觉得怎么样 您能制定一个使用 math.random 和给定百分比的算法吗? 我的意思是这样的函数: fu
我想以某种方式让按钮在按下按钮时随机改变位置。我有一个想法如何解决这个问题,其中一个我在下面突出显示,但我已经认为这不是我需要的。 import javafx.application.Applicat
对于我的 Java 类(class),我应该制作一个随机猜数字游戏。我一直陷入过去几天创建的循环中。程序的输出总是无限循环,我不明白为什么。非常感谢任何帮助。 /* This program wi
我已经查看了涉及该主题的一些其他问题,但我没有在任何地方看到这个特定问题。我有一个点击 Web 元素的测试。我尝试通过 ID 和 XPath 引用它,并使用 wait.until() 等待它变得可见。
我在具有自定义类的字典和列表中遇到了该异常。示例: List dsa = (List)Session["Display"]; 当我使用 Session 时,转换工作了 10-20 次..然后它开始抛
需要帮助以了解如何执行以下操作: 每隔 2 秒,这两个数字将生成包含从 1 到 3 的整数值的随机数。 按下“匹配”按钮后,如果两个数字相同,则绿色标签上的数字增加 1。 按下“匹配”按钮后,如果两个
void getS(char *fileName){ FILE *src; if((src = fopen(fileName, "r")) == NULL){ prin
如果我有 2 个具有以下字段的 MySQL 数据库... RequestDB: - Username - Category DisplayDB: - Username - Category
我有以下语句 select random() * 999 + 111 from generate_series(1,10) 结果是: 690,046183290426 983,732229881454
我有一个使用 3x4 CSS 网格构建的简单网站。但出于某种原因,当我在 chrome“检查”中检查页面时,有一个奇怪的空白 显然不在我的代码中的标签。 它会导致网站上出现额外的一行,从而导致出现
我有两个动画,一个是“过渡”,它在悬停时缩小图像,另一个是 animation2,其中图像的不透明度以周期性间隔重复变化。 我有 animation2 在图像上进行,当我将鼠标悬停在它上面时,anim
如图所示post在 C++ 中有几种生成随机 float 的方法。但是我不完全理解答案的第三个选项: float r3 = LO + static_cast (rand()) /( static_c
我正在尝试将类添加到具有相同类的三个 div,但我不希望任何被添加的类重复。 我有一个脚本可以将一个类添加到同时显示的 1、2 或 3 个 div。期望的效果是将图像显示为背景图像,并且在我的样式表中
我有一个基本上可以工作的程序,它创建由用户设置的大小的嵌套列表,并根据用户输入重复。 但是,我希望各个集合仅包含唯一值,目前这是我的输出。 > python3 testv.py Size of you
我正在尝试基于 C# 中的种子生成一个数字。唯一的问题是种子太大而不能成为 int32。有什么方法可以像种子一样使用 long 吗? 是的,种子必须很长。 最佳答案 这是我移植的 Java.Util.
我写这个函数是为了得到一个介于 0 .. 1 之间的伪随机 float : float randomFloat() { float r = (float)rand()/(float)RAN
我是一名优秀的程序员,十分优秀!