实习报告范例 P编程题:3个数求最大值、最小值。 界面设计:窗体上设置1个按钮 事件:按钮事件 数据输入:采用键盘输入函数,输入3个数,变量a、b、c 输出采用print方法 代码设计1:采用变量交换的方案 If ab、a>c、b>c,则a是最小的,c是最大的 代码设计2:采用逻辑表达式a>b and b>c 方案共有6中组合方案 If a>b and b>c then print a,c If a>c and c>b then print a,b —— —— 此种方案对于较多数据的问题将很困难 代码设计3:采用比较逻辑 If a>b then if b>c then print a,c else if a
2022-12-24 18:15:39
38KB
文档资料
1