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.

6 lines
272 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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