标签:变量 现在 赋值 space return cout 语句 void col
#include <iostream> //预处理器编译指令#include int main(void) //函数头 { //函数体开始{ using namespace std; //编译指令 int apple; //声明整数变量 apple = 25; //赋值变量 cout << "我有"; cout << apple; cout << "个苹果"; cout << endl; //换行 C语言使用\n换行 apple = apple - 1; //减法运算 cout << "吃了一个,现在还有" << apple << "个苹果" << endl; return 0; //函数返回0 } //函数体结束}
标签:变量 现在 赋值 space return cout 语句 void col
原文地址:https://www.cnblogs.com/ceovs/p/14672465.html