今日の課題はすこしタフでした。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!
ご面倒おかけしますが、たまにはクリックお願いします!