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