当前位置:首页 > Software > C++ > 正文内容

一小时搞定C++_8

chanra1n5年前 (2019-11-05)C++4481
#include <iostream>
using namespace std;
int main()
{
	if(1+1==2)
	{	
		cout << "1+1=2";
	}
	else if(1+1==3)
	{
		cout << "1+1=3";
	}
	else
	{
		cout << "I Do not know!";
	}
	return 0;
}

if,顾名思义,就是如果的意思,它的用法非常简单:

if(条件)
{
    //如果条件成立就运行此处内容
}
else if(条件2)
{
    //如果条件2成立就运行此处内容
}
else
{
    //如果条件都不成立就运行此处内容
}


扫描二维码推送至手机访问。

版权声明:本文由我的FPGA发布,如需转载请注明出处。

本文链接:https://myfpga.cn/index.php/post/45.html

分享给朋友:

“一小时搞定C++_8” 的相关文章

一小时搞定C++_4

一小时搞定C++_4

 #include <iostream>  using namespace std; int addnum(int a,int b) { return a+b; } int ...

一小时搞定C++_5

一小时搞定C++_5

讲到函数就可以讲讲局部变量和全局变量了,什么是局部变量呢?什么又是全局变量? #include <iostream>  using namespace std; int x,y,z;//x,y,z是全局变量  i...

C++的继承和派生

C++的继承和派生

#include <iostream> using namespace std; class fenshu { public: int xuehao; int yuwen;  }; ...

C++入门 输出Hello World

C++入门 输出Hello World

#include <iostream>using namespace std;int main(){     cout << "Hello, world!...

函数声明和使用

函数声明和使用

#include<iostream> using namespace std; int sum(int a,int b);//函数声明  int main() { cout <<&nb...