C++でintegers、long、long doubleのデータ型の範囲を表示してみた!

code-2620118_640

今日の課題はすこしタフでした。long doubleの定義を忘れそうでたいへんです。

// This program determines the size of integers, long
// integers, and long doubles.(integers、long、long doubleのデータ型の範囲の表示)
#include <iostream>
using namespace std;

int main()
{
   long double apple;

   cout << “The size of an integer is ” << sizeof(int);
   cout << ” bytes.\n”;
   cout << “The size of a long integer is ” << sizeof(long);
   cout << ” bytes.\n”;
   cout << “An apple can be eaten in ” << sizeof(apple);
   cout << ” bytes!\n”;
   return 0;

出力は以下の通り。

The size of an integer is 4 bytes.
The size of a long integer is 4 bytes.
An apple can be eaten in 8 bytes!

やさしいC++ 第5版 (「やさしい」シリーズ)
高橋 麻奈
SBクリエイティブ
2017-06-14



ご面倒おかけしますが、たまにはクリックお願いします!

にほんブログ村 海外生活ブログ 海外移住へ
にほんブログ村

にほんブログ村 海外生活ブログへ
にほんブログ村