在编写程序时,输出信息对于程序员来说是非常必要的,因为输出信息可以让我们更好的了解程序运行的情况。在 C/C++ 语言中,longlong 是一种常用的数据类型,那么接下来我们就来讨论一下,longlong 用什么输出。
在 C/C++ 语言中,我们可以使用 printf 函数来输出信息,也可以使用 cout / cin 语句来输出 / 输入信息。对于 longlong 类型,我们可以使用 printf 函数的 %lld 来进行输出。
例如:
long long a = 123456789;
printf("%lld\n", a);
输出结果为:123456789
在 C++ 语言中,我们可以使用 cout 语句来输出信息。对于 longlong 类型,我们需要使用 cout 语句的 std::cout << std::fixed << a << std::endl;来进行输出。
例如:
long long a = 123456789;
std::cout << std::fixed << a << std::endl;
输出结果为:123456789
在 C/C++ 语言中,我们还可以使用 stringstream 函数来实现 longlong 类型的输出。 stringstream 函数可以将 longlong 类型转换为字符串类型。
例如:
long long a = 123456789;
std::stringstream ss;
ss << a;
std::string str = ss.str();
cout << str << endl;
输出结果为:123456789
在 C++ 语言中,我们还可以使用 bitset 函数来输出 longlong 类型变量的二进制值。
例如:
long long a = 123456;
bitset<64> b(a);
std::cout << b;
输出结果为:0000000000000000000000000000000000000000000011110001001000000000