You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
import java.util.Random;
|
|
|
|
/**
|
|
* 题目生成器接口
|
|
*/
|
|
public interface QuestionGenerator {
|
|
/**
|
|
* 生成单个题目
|
|
* @param operands 操作数数组
|
|
* @param random 随机数生成器
|
|
* @return 生成的题目
|
|
*/
|
|
String generateQuestion(int[] operands, Random random);
|
|
}
|