C++ 程序用于打印作为输入提供的不同数据类型的值

c++server side programmingprogramming

假设我们给出一个整数值、一个长整型值、一个字符值、一个浮点型值和一个双精度型值作为输入。我们必须打印作为输入提供给我们的值并保持其精度。

因此,如果输入为整数值 = 15、长整型值 = 59523256297252、字符值 = 'y'、浮点型值 = 367.124、双精度型值 = 6464292.312621,则输出将是

15
59523256297252
y
367.124
6464292.31262

为了解决这个问题,我们将遵循以下步骤 −

  • 在单独的行中打印作为输入给出的值。

示例

让我们看看下面的实现以便更好地理解 −

#include <iostream>
#include <cstdio>
using namespace std;

void solve(int a, long b, char c, float d, double e) {

   cout << a << endl << b << endl << c << endl << d << endl;
   printf("%.5f", e);
}
int main() {
   solve(15, 59523256297252, 'y', 367.124, 6464292.312621);
   return 0;
}

输入

15, 59523256297252, 'y', 367.124, 6464292.312621

输出

15
59523256297252
y
367.124
6464292.31262

相关文章