博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C++编程基础一 29-if语句
阅读量:4933 次
发布时间:2019-06-11

本文共 1475 字,大约阅读时间需要 4 分钟。

1 // 29-if语句.cpp: 定义控制台应用程序的入口点。 2 // 3  4 #include "stdafx.h" 5 #include 
6 #include
7 #include
8 #include
9 #include
10 using namespace std;11 12 int main()13 {14 int hp = 0;15 if (hp <= 0)16 {17 cout << "游戏结束" << endl;18 }19 //还可以这么写20 if (hp <= 0)21 cout << "游戏结束" << endl; //这么写只能默认第一条语句是body22 23 //if...else语句24 if (hp <= 0)25 {26 cout << "游戏结束" << endl;27 }28 else29 {30 cout << "游戏继续" << endl;31 }32 33 //年龄保护游戏34 int age = 60;35 if (age < 18)36 {37 cout << "你可以玩3个小时" << endl;38 }39 else40 {41 if (age < 50)42 {43 cout << "你可以玩10个小时" << endl;44 }45 else46 {47 cout << "你可以玩2个小时" << endl;48 }49 }50 51 //if...else if...else52 if (age < 18)53 {54 cout << "你可以玩3个小时" << endl;55 }56 else if (age < 50)57 {58 cout << "你可以玩10个小时" << endl;59 }60 else if (age < 80)61 {62 cout << "你可以玩2个小时" << endl;63 }64 else 65 {66 cout << "你不能玩这个游戏" << endl;67 }68 69 int t;70 cin >> t;71 return 0;72 }

 

转载于:https://www.cnblogs.com/uimodel/p/9346598.html

你可能感兴趣的文章
《那些年啊,那些事——一个程序员的奋斗史》——91
查看>>
简单的学生管理系统
查看>>
vue-cli目录结构及说明
查看>>
JS 数据类型转换
查看>>
WeQuant交易策略—RSI
查看>>
osgearth将视点绑定到一个节点上
查看>>
PHP 当前时间秒数+数值,然后再转换成时间。
查看>>
TNS-12537,TNS-12560,TNS-00507 Linux Error: 29: Illegal seek解决
查看>>
IOS开发之Post 方式获取服务器数据
查看>>
Python使用selenium模拟点击(二)
查看>>
go语言生成一张正弦图
查看>>
OOP的几个原则-----LSP:Liskov替换原则(下)
查看>>
DevExpress更新至13.1.7
查看>>
菜谱查询接口文档
查看>>
PID204特种部队
查看>>
P2420 让我们异或吧(倍增)
查看>>
codeforces 880E. Maximum Subsequence(折半搜索+双指针)
查看>>
分享Silverlight/Windows8/WPF/WP7/HTML5一周学习导读(5月14日-5月20日)
查看>>
数据交互 axios 的使用
查看>>
FW Windows下DOS命令大全(经典收藏)---mklink
查看>>