doublelm.cpp
来自「高永强 全C编程源码 清华大学出版社 2002年六月第一版」· C++ 代码 · 共 12 行
CPP
12 行
//DOUBLELMT.CPP
//This program displays the maximum and minimum double numbers by calling
//the library function in header file float.h
#include <iostream.h>
#include <float.h>
void main( )
{
cout << "The max double number is: " << DBL_MAX << endl;
cout << "The min double number is: " << DBL_MIN << endl;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?