21xrx.com
2024-12-22 21:24:39 Sunday
登录
文章检索 我的文章 写文章
C++程序:输入三位数输出个位、十位、百位
2023-06-24 02:31:28 深夜i     --     --
C++ 输入 三位数 输出 个位 十位 百位

C++是一种高级编程语言,它的语法类似于英语,容易让人理解和掌握。C++拥有丰富的程序库和功能,可以满足各种编程需求,例如输入三位数并输出其个位、十位、百位。

首先,我们需要通过标准输入从控制台获取用户输入的三位数。在C++中,可以使用“cin”语句实现这一功能。例如:

int num;

cin >> num;

接下来,我们需要提取输入数值的个位、十位和百位。这可以通过以下简单的算法实现:

int hundreds = num / 100;

int tens = (num % 100) / 10;

int ones = num % 10;

最后,我们使用“cout”语句将这些数值输出到控制台上。例如:

cout << "Hundreds place: " << hundreds << endl;

cout << "Tens place: " << tens << endl;

cout << "Ones place: " << ones << endl;

将以上代码整合在一起,我们可以得到一个完整的C++程序:

#include

using namespace std;

int main() {

  int num;

  cin >> num;

  int hundreds = num / 100;

  int tens = (num % 100) / 10;

  int ones = num % 10;

  cout << "Hundreds place: " << hundreds << endl;

  cout << "Tens place: " << tens << endl;

  cout << "Ones place: " << ones << endl;

  return 0;

}

在运行程序时,用户可以输入任意一个三位数,程序将会输出该数的个位、十位和百位。这个程序可以帮助学生们更好地理解C++程序设计的基本语法和算法思维,有利于学习和掌握编程技能。

  
  

评论区

{{item['qq_nickname']}}
()
回复
回复