白盒测试
题 13:根据下列流程图编写程序实现相应分析处理并显示结果,并设计最少的测试数据进行判定覆盖测试。输入数据打印出“输入 x 值:”、“输入 y 值:”。输出文字“a=”和 a 的值;输出文字“b=”和 b 的值。其中变量 x、y 均须为整型。
文章来源地址https://www.toymoban.com/news/detail-509802.html
import java.util.Scanner;
public class demo13{
public static void main(String[] args){
Scanner sc= new Scanner(System.in);
System.out.println("输入x值");
int x = sc.nextInt();
System.out.println("输入y值");
int y = sc.nextInt();
int a,b;
if(x>0||y>0){
a=10;
System.out.println("a="+a);
}else{
if(x<10||y<10){
b=0;
System.out.println("b="+b);
}else{
}
}
}
}
文章来源:https://www.toymoban.com/news/detail-509802.html
到了这里,关于白盒测试题(13-16道题目+详细代码)的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!