第1章 C++入门

这篇博客介绍了C++的基础知识,包括如何使用`iostream`输出语句打印“Hello World!”、如何接收用户输入并计算表达式的值以及如何定义和调用简单的函数来找出两个数中的最大值。通过实例展示了C++的基本语法和函数调用流程。
摘要由CSDN通过智能技术生成

1、输出一个语句

#include<iostream> //引入头文件
using namespace std; //使用名称为std的命名空间

int main()
{
    cout<<"hello world!"; //cout用来访问流对象,<<表示插入,将字符串插入到前面的流对象中
    return 0; //非零值(通常为1)表示异常终止;可不写,隐式插入
}

在这里插入图片描述

2、求一个表达式的值

#include<iostream>
using namespace std;

int main()
{
    int a,b,result;
    cout<<"please input two numbers:\n";
    cin>>a>>b;
    result=3*a+4*b-9;
    cout<<"result is:"<<result<<endl;
    return 0;
}

在这里插入图片描述

3、简单函数调用

#include<iostream>
#include<math.h>
using namespace std;

double max(double x,double y); //声明函数max(),在main()前无函数定义;不声明也可以!

int main()
{
    double a,b,c;
    cout<<"please input two numbers:\n";
    cin>>a>>b;

    c=max(a,b);
    cout<<"the squart of maximum(最大值开方)="<<sqrt(c);
    return 0;
}

double max(double x,double y)
{
    if(x>y)
        return x;
    else
        return y;
}

在这里插入图片描述

4、省略函数声明的情况(3的改进版)

#include<iostream>
#include<math.h> //需调用sqrt()函数
using namespace std;

double max(double x,double y) //max()函数定义,同时也是函数声明
{
    if(x>y)
        return x;
    else
        return y;
}

int main()
{
    double a,b,c;
    cout<<"please input two numbers:\n";
    cin>>a>>b;

    c=max(a,b);
    
    cout<<"the squart of maximum(最大值开方)="<<sqrt(c);
    return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值