[语言月赛202208] 你几岁了
穿插了一道很简单的题,小朋友热热手,恢复一下信心。
luogu-B3648
题目要求
描述
小 A 今年 岁。他刚学了英语,想告诉其他人:
I am x years old.
输入
输入一个数 ,其中 ,代表小 A 的年龄。
输出
输出一句话。
输入样例-1
2
输出样例-1
I am 2 years old.
输入样例-2
5
输出样例-2
I am 5 years old.
题目分析
- 读取年龄x的值
- 输出年龄x的信息
{% include custom/custom-post-content-inner.html %}
示例代码
#include<iostream>
using namespace std;
int main(){
int x; // 定义整数x,用于存储输入的年龄
cin >> x; // 从输入流中读取x的值
cout << "I am " << x << " years old."; // 输出年龄
return 0;
}
{% include custom/custom-post-content-footer.md %}
所有代码已上传至Github:https://github.com/lihongzheshuai/yummy-code
“luogu-”系列题目可在 洛谷题库 在线评测。
“bcqm-”系列题目可在 编程启蒙题库 在线评测。
GESP/CSP 认证学习微信公众号

Last updated on