


Example 1
import java.util.Scanner;/** * Created by liwenj on 2017/7/17. */public class test7 {public static void main(String[] args) { Scanner input=new Scanner(System.in);int money=input.nextInt();if(money>500){ System.out.println("我要买一个凯迪拉克"); }else if(money>100){ System.out.println("我要买一个帕萨特"); }else if(money>50){ System.out.println("我要买一个伊兰特"); }else if(money>10){ System.out.println("我要买一个奥拓"); }else{ System.out.println("我要买一个拖拉机"); } } }
Example 2
import java.util.Scanner;/** * Created by liwenj on 2017/7/17. */public class test8 {public static void main(String[] args) { Scanner input = new Scanner(System.in); System.out.println("请输入是否是会员"); String huiyuan = input.next();boolean f = huiyuan.equals("yes"); System.out.println("请输入消费金额");double money = input.nextDouble();if (f) {if (money >= 200) {double dazhe = money * 0.75; System.out.println("你消费:" + dazhe); } else {double dazhe = money * 0.8; System.out.println("你消费:" + dazhe); } } else if (money >= 100) {double dazhe = money * 0.9; System.out.println("你消费:" + dazhe); }else{ System.out.println("你消费:"+money); } } }
Excessively long multi-branch structures are often regarded as software The bad structure in it, because it violates the OCP principle (open and closed principle), whenever a new conditional judgment processing needs to be added, an if-else branch must be added.
In many cases, using a function table structure is an effective way to avoid overly long branch structures. The following is a solution algorithm for the "Wolf, Sheep and Vegetable Crossing the River" problem using a function table structure instead of an overly long branch structure. Example of multi-branch structure. The farmer can take a total of 8 actions, and each action corresponds to a state transition processing process. If an if-else multi-branch structure is used, the code for processing state transitions will be very long. In order to avoid excessively long branch jump codes, the algorithm uses a function table structure. First declare the definition of the function table entry:
print? typedef bool (*ProcessFuncPtr)(const ItemState& current, ItemState& next); struct ActionProcess{ Action act; ProcessNextFuncPtr processFunc; }
The above is the detailed content of Introduction to if processing multi-branch structure examples and the shortcomings of too long if statements. For more information, please follow other related articles on the PHP Chinese website!

各位同学大家好,今天我们要讲的是关于Xmind的课程。首先,我来给大家科普一下,Xmind是什么?XMind是一款思维导图软件,主要有主题构成的,比如中心主题、主题、子主题、父主题、自由主题等。可以使用这些主题组合成不同的图形,如果使用主题设计出方向图形。我们今天要讨论的是如何在Xmind中更改分支方向的技巧。接下来,我将详细解释一下,希望大家能一起学习和探讨!步骤如下:1、首先,我们需要双击打开XMind最新版本的工具;然后,我们点击【新建空白图】。(如图所示) 2、这时候,我们在画布上显示

CakePHP是一个开源的Web应用程序框架,它基于PHP语言构建,可以简化Web应用程序的开发过程。在CakePHP中,处理文件上传是一个常见的需求,无论是上传头像、图片还是文档,都需要在程序中实现相应的功能。本文将介绍CakePHP中如何处理文件上传的方法和一些注意事项。在Controller中处理上传文件在CakePHP中,上传文件的处理通常在Cont

CakePHP是一个流行的PHP开发框架,它可以帮助开发者快速构建高质量的Web应用程序。随着全球化的发展,越来越多的应用需要支持多语言,CakePHP也提供了相应的支持。本文将介绍CakePHP如何处理多语言。一、多语言支持多语言支持是CakePHP的一项重要功能。从版本2.0开始,CakePHP支持gettext文件格式,该

Lambda表达式是无名称的匿名函数,其语法为:(parameter_list)->expression。它们具有匿名性、多样性、柯里化和闭包等特点。实际应用中,Lambda表达式可用于简洁地定义函数,如求和函数sum_lambda=lambdax,y:x+y,并通过map()函数应用于列表来进行求和操作。

随着Excel文件在商业领域和日常生活中的不断普及和应用,我们经常需要使用PHP处理Excel文件,例如数据的导入导出,数据的筛选和排序等。因此,本文将介绍如何使用PHP进行Excel文件处理。安装PHPExcel库PHPExcel是一款强大的PHP操作Excel文件的开源库,其支持读取、写入Excel文件,并提供了许多便捷的操作方法。在使用之前需要先安装P

随着现代Web应用不断发展,PHP作为其中最流行的编程语言之一,被广泛地应用于网站开发中。但在开发过程中,经常会遇到空值错误,而这些错误会导致应用程序抛出异常,进而影响用户的使用体验。因此,在PHP开发过程中,如何检测和处理空值错误,是程序员们需要掌握的重要技能。一、什么是空值错误在PHP开发过程中,空值错误通常指的是两种情况:变量未初始化和变

MySQL.proc表是MySQL数据库中存储存储过程和函数信息的系统表,通过深入了解其结构及用途,可以更好地理解存储过程和函数在MySQL中的运行机制,并进行相关的管理和优化。下面将详细解析MySQL.proc表的结构及用途,并提供具体的代码示例。1.MySQL.proc表的结构MySQL.proc表是一个系统表,存储了所有存储过程和函数的定义和相关信息

tortoisesvn是软件开发人员必备的开发管理软件,通过该软件用户能够利用是视图化的超越时间的管理文件和目录,同时文件会保存在中央版本库,除了能记住文件和目录的每次修改以外,你可以将文件恢复到过去的版本,并且可以通过检查历史知道数据做了哪些修改。那么tortoisesvn软件怎么创建分支?tortoisegit软件如何合并分支呢?下面就让小编给大家解答下吧!tortoisesvn软件怎么创建分支?1、创建主千目录trunk,trunk目录下创建trunkTest.txt文件2、trunk目录


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

SublimeText3 Linux new version
SublimeText3 Linux latest version

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 English version
Recommended: Win version, supports code prompts!
