大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
import java.util.Scanner;
创新互联是一家专注于网站设计制作、成都网站制作与策划设计,文县网站建设哪家好?创新互联做网站,专注于网站建设10多年,网设计领域的专业建站公司;建站业务涵盖:文县等地区。文县做网站价格咨询:18982081108
public class Test22 {
public static void main(String[] args) {
System.out.println("白__依山尽");
System.out.println("黄河入海__");
System.out.println("欲穷千里__");
System.out.println("更__一层楼");
System.out.println("答案:");
System.out.println("A:日、流、目、上");
System.out.println("B:目、流、日、上");
System.out.println("C: 日、流、上、目");
System.out.println("D: 上、流、目、日");
System.out.print("请选择:");
Scanner scanner = new Scanner(System.in);
String input = scanner.next();
if("A".equals(input)) {
System.out.println("恭喜你答对了!");
} else {
System.out.println("很遗憾打错了!");
}
}
}
import java.awt.Checkbox;
import java.awt.CheckboxGroup;
import java.awt.Choice;
import java.awt.FlowLayout;
import java.awt.Label;
import java.awt.TextField;
import java.awt.event.ItemEvent;
import java.awt.event.ItemListener;
import javax.swing.JFrame;
public class Choose extends JFrame implements ItemListener {
/**
*
*/
private static final long serialVersionUID = 1L;
Label l1, l2;
TextField t1, t2;
CheckboxGroup checkboxGroup = new CheckboxGroup();
Checkbox checkbox1 = new Checkbox("QQ", checkboxGroup, false);
Checkbox checkbox2 = new Checkbox("MSN", checkboxGroup, false);
Checkbox checkbox3 = new Checkbox("ICQ", checkboxGroup, false);
Choice c;
public Choose() {
super("简单小程序");
this.setLayout(new FlowLayout());
l1 = new Label("选择你常用的软件:");
l2 = new Label("选择你喜欢的水果:");
checkbox1.addItemListener(this);
checkbox2.addItemListener(this);
checkbox3.addItemListener(this);
t1 = new TextField(20);
t2 = new TextField(20);
c = new Choice();
c.addItemListener(this);
c.add("苹果");
c.add("橘子");
c.add("香蕉");
c.add("梨子");
this.add(l1);
this.add(checkbox1);
this.add(checkbox2);
this.add(checkbox3);
this.add(t1);
this.add(l2);
this.add(c);
this.add(t2);
this.setSize(450, 200);
this.setVisible(true);
}
public static void main(String[] args) {
new Choose();
}
public void itemStateChanged(ItemEvent e) {
if (e.getSource() == checkbox1) {
t1.setText("你常用的软件是:" + checkbox1.getLabel());
}
if (e.getSource() == checkbox2) {
t1.setText("你常用的软件是:" + checkbox2.getLabel());
}
if (e.getSource() == checkbox3) {
t1.setText("你常用的软件是:" + checkbox3.getLabel());
}
t2.setText("你喜欢的水果是:" + c.getSelectedItem());// 得到选中的下拉列表值
}
}
/**
* 额 java的 问题 怎么跑 来C++ 了?
* 我写的这个 你看下 符合不?
*
*/
import java.util.Scanner;
public class Test001 {
public static void main(String[] args) {
Scanner read=new Scanner(System.in);
int[] regionOne={1,2,3};
int[] regionTwo={4,5,6};
while(true){
System.out.println("以下数字属于哪个区?1-1区;2-2区");
int randomNum=(int)(Math.random()*6+1);
System.out.print(randomNum+" 所在的区是 :");
String input=read.nextLine();
try {
int answer=Integer.parseInt(input);
if(answer==1){
boolean rs=check(regionOne,randomNum);
if(rs){
System.out.println("正确");
}else{
System.out.println("输入错误:");
continue;
}
}else if(answer==2){
boolean rs=check(regionTwo,randomNum);
if(rs){
System.out.println("正确");
}else{
System.out.println("输入错误:");
continue;
}
}else{
System.out.println("输入不正确!");
}
} catch (Exception e) {
System.out.println("输入错误:");
}
}
}
private static boolean check(int[] region, int num) {
for(int i=0;iregion.length;i++){
if(region[i]==num){
return true;
}
}
return false;
}
}
简单的写了一个参考效果代码
Java可以很简单的生成两个数字, 并且计算出两个数字的加减运算的结果 ; 得到结果后和选择的结果进行比较.即可.答对就加分
界面可以使用awt/swing/javafx/jsp等.
通过上一题下一题按钮, 来查看题目,
刚好我以前毕业设计做的是网上自测
从数据库中加载这些题
将每道题的四个选项放在input type="radio"/中
每道题的四个radio共享一个name属性,即可实现单选功能。这个name属性可以用jsp动态产生。
用户做完题提交后。服务器获得用户所选的radio的值,与数据库中的正确答案比较,再把比较的结果以及正确答案返回给用户。
不懂加我67919823
6、B;7、B;8、B;
9、D;10、D;11、C;
12、D;13、B;14、A;
15、A