• 软件测试——闰年测试


    一、程序要求 

      闰年的判定方法:

      1、普通年能被4整除且不能被100整除的为闰年。(如2004年就是闰年,1900年不是闰年)
      2、世纪年能被400整除的是闰年。(如2000年是闰年,1900年不是闰年)
      正常情况下在文本框内输入一个年份,点击OK按钮,程序会判定出该年份是否问闰年,但是如果输入的是一个字符串或者是一个负数,程序就会产生异常,而本篇博客就是为了解决这一问题。
     
    二、测试分析
    编号 输入 输出
    1 2000 2000 is a leap year.
    2 1900 1900 is not a leap year.
    3 sdafsd Input Invalid.
    4 -100 Please input a positive number.
    三、代码实现
     
    import javafx.application.Application;
    import javafx.event.ActionEvent;
    import javafx.event.EventHandler;
    import javafx.scene.Scene;
    import javafx.scene.control.Button;
    import javafx.scene.control.TextField;
    import javafx.scene.layout.AnchorPane;
    import javafx.scene.text.Text;
    import javafx.stage.Stage;
    
    
    public class calculate extends Application{
        
        
        public static void main(String arg0[]){
            calculate.launch(arg0);
        }
    
        public void start(Stage stage) throws Exception {
            stage.setTitle("Calculate Year Program");
            AnchorPane root = new AnchorPane();
            
            Text text = new Text();
            text.setText("Please input the number of the year: ");
            root.getChildren().add(text);
            AnchorPane.setTopAnchor(text, 30.0);
            AnchorPane.setLeftAnchor(text, 90.0);
            
            final TextField input = new TextField();
            root.getChildren().add(input);
            AnchorPane.setTopAnchor(input, 50.0);
            AnchorPane.setLeftAnchor(input, 90.0);
            
            Button submit = new Button();
            submit.setText("submit");
            root.getChildren().add(submit);
            AnchorPane.setTopAnchor(submit, 50.0);
            AnchorPane.setLeftAnchor(submit, 240.0);
            
            submit.setOnAction(new EventHandler<ActionEvent>() {
                public void handle(ActionEvent arg0) {
                    final int year = Integer.parseInt(input.getText().toString());
                    
                    Stage newStage = new Stage();
                    AnchorPane newRoot = new AnchorPane();
                    Text result = new Text();                
                    
                    try{
                        if((year % 4 == 0 && year % 100 != 0) || (year % 400 == 0)){
                            result.setText(year + " is a leap year.");
                        }
                        else{
                            result.setText(year + " is not a leap year.");
                        }
                    } catch(Exception e){
                        result.setText("Input Invalid");
                    }
                    
                    if(year < 0){
                        result.setText("Please input a positive number.");
                    }
                    
                    newRoot.getChildren().add(result);
                    AnchorPane.setTopAnchor(result, 20.0);
                    AnchorPane.setLeftAnchor(result, 30.0);
                     
                    newStage.setScene(new Scene(newRoot, 250, 50));
                    newStage.show();
                }
            });
            
            stage.setScene(new Scene(root, 400, 100));
            stage.show();
        }
    }

    四、程序结果

  • 相关阅读:
    html-Notes3
    html-Notes2 表单
    html 笔记
    网页设计常用色彩搭配表
    css
    html-Notes
    C# 输入字符串,每3个截取一次,形成一个数组
    提高情商的好书推荐 (程序猿不仅要智商也要情商)
    PHP 学习笔记---基本语法
    php学习笔记之字符串处理
  • 原文地址:https://www.cnblogs.com/wuditju/p/4395657.html
Copyright © 2020-2023  润新知