基本输出语句printf
一道基础练习题,练习基本输出语句printf
。
BCQM3005
题目要求
描述
输出表达式1234∗5678的结果。
输入
无
输出
1234∗5678=7006652
输入样例
无
输出样例
1234 * 5678 = 7006652
题目分析
题目本意自然不是计算好输出结果后再原样输出,而是要使用printf
函数的格式化输出功能,通过程序自动计算出结果输出。
使用printf
函数时需要引入头文件<cstdio>
。
代码参考
#include <cstdio>
int main() {
// %d 是整数占位符,printf 函数会用 1234 * 5678 的结果替换 %d
printf("1234 * 5678 = %d", 1234 * 5678);
return 0;
}
{% include custom/custom-post-content-footer.md %}
所有代码已上传至Github:https://github.com/lihongzheshuai/yummy-code
“luogu-”系列题目可在 洛谷题库 在线评测。
“bcqm-”系列题目可在 编程启蒙题库 在线评测。
GESP/CSP 认证学习微信公众号

Last updated on