数据转换
#include<iostream> using namespace std; int main(){ //第一种 int i = 10; double x = (double) i; //第二种 int j = 10; double y = double(j); }