您好,欢迎来到三六零分类信息网!老站,搜索引擎当天收录,欢迎发信息
免费发信息
三六零分类信息网 > 晋中分类信息网,免费分类信息发布

C++程序将double类型的变量转换为int类型

2025/1/20 7:57:50发布8次查看
在c++中,int类型的变量只能保存正整数或负整数值;它们不能保存小数值。有 float 和 double 值可用于此目的。为了存储小数点后最多七位的小数,创建了双精度数据类型。整数到双精度数据类型的转换可以由编译器自动完成(称为“隐式”转换),也可以由程序员向编译器显式请求(称为“显式”转换)。在接下来的部分中,我们将介绍各种转换方法。
隐式转换编译器自动执行隐式类型转换。要实现这一点,需要两个变量——一个是浮点类型,另一个是整数类型。当我们简单地将浮点值或变量分配给整数变量时,编译器将处理所有其他事情。此转换存在数据丢失的问题,因为整数变量不能包含小数点后的小数值。
语法double input = <double value>;int output = input;
算法以双精度值作为输入;将值赋给整型变量。显示输出。示例#include <iostream>using namespace std;int solve(double value) { int opval = value; return opval;}int main(){ double ip = 25.3056; int op = solve(ip); cout<< the input value is: << ip << endl; cout<< the output value is: << op << endl; return 0;}
输出the input value is: 25.3056the output value is: 25
正如我们所看到的,转换过程相当简单。我们只是将输入变量分配给输出变量;不需要额外的程序。另外,可以看出输出中不存在双精度值的小数部分。
显式转换当程序员显式指示编译器将一种数据类型转换为另一种数据类型时,这称为显式转换或显式类型转换。有两种方法可以实现此目的:一种是在赋值时显式声明数据类型,另一种是使用 static_cast。我们之前讨论过第一种方法。
算法以双精度值作为输入;使用显式类型转换将值分配给整数变量。显示输出。在赋值期间提及数据类型有两种不同的执行方式。一种是 c 风格的版本,另一种是函数风格的转换。
c 风格版本结果数据类型在源变量之前指定,并括在括号内。
语法double input = <double value>;int output = (int) input;
示例#include <iostream>using namespace std;int solve(double value) { int opval = (int)value; return opval;}int main(){ double ip = 84.4439; int op = solve(ip); cout<< the value before conversion: << ip << endl; cout<< the value after conversion: << op << endl; return 0;}
输出the value before conversion: 84.4439the value after conversion: 84
函数式铸造当向函数提供参数时,我们会声明结果数据类型并将源值括在括号内。
语法double input = <double value>;int output = int(input);
示例#include <iostream>using namespace std;int solve(double value) { int opval = int(value); return opval;}int main(){ double ip = -993.6571; int op = solve(ip); cout<< the value before conversion: << ip << endl; cout<< the value after conversion: << op << endl; return 0;}
输出the value before conversion: -993.657the value after conversion: -993
使用 static_cast要在预定义类型之间进行转换,请使用静态强制转换。此外,这个也可以显式引用的强制转换负责强制执行隐式类型转换。
语法double input = < double value>;int output = static_cast<int>(input);
示例#include <iostream>using namespace std;int solve(double value) { int opval = static_cast<int>(value); return opval;}int main(){ double ip = -65.2354; int op = solve(ip); cout<< the value before conversion: << ip << endl; cout<< the value after conversion: << op << endl; return 0;}
输出the value before conversion: -65.2354the value after conversion: -65
结论从双精度数据类型转换为整型数据类型总是会导致数据丢失,因为整型变量不能包含双精度变量的小数部分。当我们必须将一个值四舍五入到其下限值(给定小数值的最小整数值)时,这些转换非常有用。
以上就是c++程序将double类型的变量转换为int类型的详细内容。
晋中分类信息网,免费分类信息发布

VIP推荐

免费发布信息,免费发布B2B信息网站平台 - 三六零分类信息网 沪ICP备09012988号-2
企业名录