用c++中的if语句求绝对值、字母大小转换、简单函数

Kiran ·
更新时间:2024-11-14
· 962 次阅读

if语句求X的绝对值、字母大小写转换、简单函数

**X的绝对值

使用if语言的简单分支

**

#include void main() {int x; cin>>x; if(x<0) x=-x; cout<<"|x|="<<endl; }

字母大小写转换

#include void main(); {char c; cin>>c; if(c>='A'&&c<='Z') c=c+32; cout<<c<<endl; }

if语句的嵌套

if-else
` else if

在这里插入图片描述
编写程序计算函数

else if语句

#include void main() {int x,y; cout<>x; if(x>3) y=x*x+4; else if(x>0) y=x; else y=x*x-4; cout<<"y="<<y<<endl; }

if-else式

#include void main() {int x,y; cout<>x; if(x>0) if(x<=3) y=x; else y=x*x+4; else y=x*x-4; cout<<"y="<<y<<endl; }

三个并列if结构

#include void main() {int x,y; cout<>x; if(x>3) y=x*x+4; if(x>0&&x<=3) y=x; if(x<=0) y=x*x-4; cout<<"y="<<y<<endl; }

在这里插入图片描述if-else在这里插入图片描述


作者:秃头少女养成记



IF 函数 C++ 字母 c+ if语句

需要 登录 后方可回复, 如果你还没有账号请 注册新账号