txtOutput.setBackground(Color.WHITE);
double score;
String output="";
score=Double.parseDouble(txtScore.getText());
if(score>=60){
output="考试通过";
txtOutput.setBackground(Color.green);
txtOutput.setText(output);
}else{
output="考试未通过";
txtOutput.setBackground(Color.red);
txtOutput.setText(output);
}
版权声明:本文为weixin_49015157原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。