编程语言
首页 > 编程语言> > (第三课)其他C++语句

(第三课)其他C++语句

作者:互联网

#include <iostream>               //预处理器编译指令#include
int main(void)                    //函数头 
{                                 //函数体开始{
    using namespace std;          //编译指令
    int apple;                    //声明整数变量
    cout << "你现在有多少个苹果" << endl;
    cin>> apple;                   //输入流
    cout << "现在有" << apple << "个苹果" << endl;
    return 0;                     //函数返回0
}                                 //函数体结束}

 

标签:语句,cout,int,C++,编译,指令,第三课,include,apple
来源: https://www.cnblogs.com/ceovs/p/14672512.html