f0405.cpp
资源名称:c.rar [点击查看]
上传用户:puke2000
上传日期:2022-07-25
资源大小:912k
文件大小:0k
源码类别:

C#编程

开发平台:

Visual C++

  1. //=====================================
  2. // f0405.cpp
  3. // 显式转换
  4. //=====================================
  5. #include<iostream>
  6. #include<cmath>
  7. using namespace std;
  8. //-------------------------------------
  9. int main(){
  10.   double d = sqrt(123456.0);
  11.   int a = static_cast<int>(d) * 8 + 5;
  12.   int b = d * 8 + 5;
  13.   cout<<d<<endl<<a<<endl<<b<<endl;
  14.   a = 2000000000;
  15.   b = 1000000000;
  16.   int c = (static_cast<double>(a) + b)/2;
  17.   cout<<a+b<<endl<<c<<endl;
  18. }//====================================
  19.