02. 定义变量

创建日期:2024-07-11
更新日期:2025-02-01

carrot.cpp

#include <iostream>

int main()
{
    using namespace std;
    int carrots;

    carrots = 25;
    cout << "I have ";
    cout << carrots;
    cout << " carrots.";
    cout << endl;
    carrots = carrots - 1;
    cout << "Crunch, crunch. Now I have " << carrots << " carrots." << endl;
}