初识输入
变量值读取练习,开始接触从控制台读取变量的值。(之前的BCQM3019]其实已经用过,但是如果按顺序的话,这是第一次接触)
BCQM3016
题目要求
描述
输入一个数字n,表示身高,程序会输出一句英文,“My height is ncm.”,其中n代指输入的数字。例如:输入180,输出是“My height is 180cm.”。
输入
输入一个整数 n。
输出
输出"My height is ncm.”
输入样例
175
输出样例
My height is 175cm.
题目分析
学习从控制台读取变量值的语法,可以通过scanf
或者cin
函数读取变量的值。剩下是之前练习过的格式化程序输出而已。建议使用printf
。
代码参考
#include <cstdio>
int main() {
int n;
// 从控制台读取整数输入
scanf("%d", &n);
// 按格式输出结果
printf("My height is %dcm.", n);
return 0;
}
{% include custom/custom-post-content-footer.md %}
所有代码已上传至Github:https://github.com/lihongzheshuai/yummy-code
“luogu-”系列题目可在 洛谷题库 在线评测。
“bcqm-”系列题目可在 编程启蒙题库 在线评测。
GESP/CSP 认证学习微信公众号

Last updated on