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.
|
/**
|
|
* 出题策略接口。
|
|
*/
|
|
public interface QuestionStrategy {
|
|
|
|
/**
|
|
* 生成一道数学题目。
|
|
*
|
|
* @return 返回生成的数学题目表达式
|
|
*/
|
|
String generateQuestion();
|
|
}
|