- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
目前对于减法题,你可以得到第一个数字小于第一个数字(即6-10)的问题,除法的问题可以是小数答案。
我怎样才能让减法题总是非负的,而整数答案只对除法?
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;
import android.widget.Toast;
import java.util.Random;
public class MainActivity extends AppCompatActivity {
int rightBox;
Button b1;
Button b2;
Button b3;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
b1 = (Button)findViewById(R.id.button1);
b2 = (Button)findViewById(R.id.button2);
b3 = (Button)findViewById(R.id.button3);
createOperation();
}
public enum Operation {
SUM, DIVISION, MULTIPLICATION, SUBTRACTION
}
private Operation generateRandOperation() {
Random rand = new Random();
int choice = rand.nextInt(4);
Operation operation = null;
switch (choice)
{
case 0:
operation = Operation.SUM;
break;
case 1:
operation = Operation.DIVISION;
break;
case 2:
operation = Operation.MULTIPLICATION;
break;
case 3:
operation = Operation.SUBTRACTION;
break;
}
String op = String.valueOf(operation);
Log.d("Operation: ", op);
return operation;
}
public void createOperation() {
Operation operation = generateRandOperation();
Random rand = new Random();
int num1 = rand.nextInt(1000);
int num2 = rand.nextInt(1000);
int wrongAns1 = rand.nextInt(1000);
int wrongAns2 = rand.nextInt(1000);
rightBox = rand.nextInt(2);
String choice = String.valueOf(rightBox);
Log.d("Right box: ", choice);
String equationText = String.valueOf(num1) + " " +
getOperationString(operation) + " " + String.valueOf(num2) + "?";
TextView displayEq = (TextView) findViewById(R.id.tvDisplay);
displayEq.setText(equationText);
float rightAns = calculateAnswer(operation, num1, num2);
switch(rightBox) {
case 0:
b1.setText(String.valueOf(rightAns));
b2.setText(String.valueOf(wrongAns1));
b3.setText(String.valueOf(wrongAns2));
break;
case 1:
b1.setText(String.valueOf(wrongAns1));
b2.setText(String.valueOf(rightAns));
b3.setText(String.valueOf(wrongAns2));
break;
case 2:
b1.setText(String.valueOf(wrongAns2));
b2.setText(String.valueOf(wrongAns1));
b3.setText(String.valueOf(rightAns));
break;
default:
break;
}
}
private float calculateAnswer(Operation operation, int num1, int num2) {
float ans = 0;
if (operation == Operation.SUM)
{
ans = num1 + num2;
}
else if (operation == Operation.SUBTRACTION)
{
ans = num1 - num2;
}
else if (operation == Operation.DIVISION)
{
ans = num1 / num2;
}
else if (operation == Operation.MULTIPLICATION)
{
ans = num1 * num2;
}
String choice = String.valueOf(ans);
Log.d("ANS", choice);
TextView answerTv = (TextView) findViewById(R.id.tvPoints);
answerTv.setText(String.valueOf(ans));
return ans;
}
private String getOperationString(Operation operation) {
String operationText = "";
if (operation == Operation.SUM)
{
operationText = "+";
} else if (operation == Operation.MULTIPLICATION)
{
operationText = "*";
} else if (operation == Operation.SUBTRACTION)
{
operationText = "-";
} else if (operation == Operation.DIVISION)
{
operationText = "/";
}
return operationText;
}
public void onClick(View view) {
boolean correct = false;
boolean play = true;
switch(view.getId()) {
case R.id.button1:
if (rightBox == 0)
{
correct = true;
}
break;
case R.id.button2:
if (rightBox == 1)
{
correct = true;
}
break;
case R.id.button3:
if (rightBox == 2)
{
correct = true;
}
break;
}
if (correct)
{
Toast.makeText(getApplicationContext(), "Correct!", Toast.LENGTH_SHORT).show();
}
if (!correct)
{
Toast.makeText(getApplicationContext(), "WRONG!", Toast.LENGTH_SHORT).show();
}
if(play)
{
createOperation();
}
}
}
布局
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.example.mathgame.MainActivity">
<Button
android:text="Button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_alignParentStart="true"
android:id="@+id/button1"
android:onClick="onClick"/>
<Button
android:text="Button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignTop="@+id/button1"
android:layout_toEndOf="@+id/button1"
android:layout_marginStart="21dp"
android:id="@+id/button2"
android:onClick="onClick"/>
<Button
android:text="Button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignTop="@+id/button2"
android:layout_toEndOf="@+id/button2"
android:layout_marginStart="30dp"
android:id="@+id/button3"
android:onClick="onClick"/>
<TextView
android:text="TextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_alignStart="@+id/button2"
android:layout_marginStart="13dp"
android:layout_marginTop="78dp"
android:id="@+id/tvDisplay"/>
<TextView
android:text="TextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/button2"
android:layout_alignStart="@+id/tvDisplay"
android:layout_marginTop="66dp"
android:id="@+id/tvPoints"/>
</RelativeLayout>
最佳答案
使用 if else 语句示例:
Random rand = new Random();
int num1 = rand.nextInt(1000);
int num2 = rand.nextInt(1000);
if(num1<num2){
Operation operation = generateRandOperation();
while(operation == Operation.SUBTRACTION||operation == Operation.DIVISION){
Operation operation = generateRandOperation();
}
}
else{
Operation operation = generateRandOperation();
}
if(operation == Operation.DIVISION){
if(isPrime(num1)){
num1++;
}
while(((num1%num2)!=0)&&num1<num2){
int num2 = rand.nextInt(1000);
}
}
将此方法添加到程序中
public static boolean isPrime(int number){
for(int i=2; i<number; i++){
if(number%i == 0){
return false; //number is divisible so its not prime
}
}
return true; //number is prime now
}
关于java - 安卓数学游戏 : How to get only non-negative subtraction questions and whole numbers only for division?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40749524/
我正在使用 gmock 并模拟了一个函数 boost::beast::http::response_parser作为输出参数。功能签名看起来像: error_code readFromSocket(b
我的任务是打印由“非元音、元音、非元音”组成的单词列表,即 bab、bac、bad、bad ... 到 zuz。 我已经设法创建了一个代码,它执行前两个字母,但在最后一个循环中丢失并只打印'}' -
我正在尝试使用 label2rgb 生成 RGB 标签切片并使用它来更新 RGB 体积,如下所示: labelRGB_slice=label2rgb(handles.label(:,:,han
我有一个很奇怪的问题。我在 dll 中定义了一个接口(interface),如下所示: public interface IKreator2 { string Name { get; set;
在我的 openshift Drupal 托管中,网络都在 SSL 下 http://domain.com -> https://www.domain.com 确定 http://www.domain
我收到警告“退出构造函数时不可为空的事件‘SomeEvent’必须包含非空值。考虑将事件声明为可空。” 这是我的代码的一个非常简化的版本,它复制了完全相同的问题。我在这里错过了什么?这与 .Net 6
在一次大学考试中,我被要求测试一些 apache 簿记员类/方法,在这样做的过程中,我想在我的参数化测试中使用 mockito。没有 mockito 的测试工作正常但是当我尝试模拟接口(interfa
假设 A 列在 7 行中有以下值: 2 [空白的] 0 -0.3 0 [空白的] 0 如何获取范围(7 行)中非空/空白且不为零的最后一个值?因此,在这种情况下,正确答案是 -0.3。 最佳答案 =I
考虑以下受 this talk 启发的代码: template struct even_common_type_helper_impl; template struct even_common_typ
考虑这段代码, struct A {}; struct B { B(const A&) {} }; void f(B) { cout << "f()"<
考虑下面的类(class)。如果我对它运行 Findbugs,它会在第 5 行但不在第 7 行给我一个错误(“可序列化类中的非 transient 非可序列化实例字段”)。 1 public clas
我正在编写一个 python 脚本来计算 数据包丢失 通过使用 ping IP 地址linux 中的 subprocess 模块。 CSV 文件中保存了多个 IP 地址。当只给出可 ping 目的地时
我只是做文本更改,在文本之前它工作正常。请任何人都可以帮助我。 提前致谢 最佳答案 我已经解决了: ionic cordova 插件rmcordova-plugin-ionic-webview ion
我如何定义 在 persistence.xml 中? 我的项目在 Tomcat 6 和 Tomcat 7 中运行良好。 现在我正在使用 Struts 2 Spring 3.0.5 JPA 2 Jbos
我有一个 maven 仓库中不存在的第三方 jar,我们称它为“a.jar”,它也依赖于至少 20 多个第三方 jar,其中大部分不在 maven 中或者,我们称它们为“b.jar、c.jar、d.j
我已经浏览了各种线程很多小时(不夸张),但一直无法找到一种解决方案组合,使我能够将非 www 和 http 转发到 www 和 https,同时仍然能够查看 php 文件没有扩展名。如下是我的ngin
Scott Meyer 关于非成员函数增加封装并允许更优雅的设计(设计方面)的论点对我来说似乎非常有效。看这里:Article 但是我对此有疑问。 (似乎还有其他人,尤其是库开发人员,他们通常完全忽略
在对类设计的一些事实感到困惑时,特别是函数是否应该是成员,我查看了 Effective c++ 并找到了第 23 条,即 Prefer non-member non-friend functions
我正在尝试使用 firebase 云功能将通知发送到一个点半径的圆内的设备。我能够获取圈内设备的 ID,但无法获取 token ,使用 console.log(token) 打印时 token 为空。
我在我的项目中使用 React-ckeditor 5 包。我得到一个反序列化的 html 数据,我正在使用 React-html-parser 包将它解析成 html 模板,并将这个解析的数据传递给
我是一名优秀的程序员,十分优秀!