Files
HuangHai 1f397eca87 'commit'
2025-08-30 18:35:01 +08:00

6 lines
272 B
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

Q:开发一个生成四则运算的程序
思路:
1括号有五种情况这个用IF ELSE或者SWITCH处理。
2操作符有三种情况三层循环。
3生成大小合适的数字比如20以下。
4注意除号的分母不能是0。