写出下列程序的运行结果【 】。 #include<iostream. h> void func(double x, int &part1, double &part2){ part1=int(x)+500: p

admin2009-01-15  40

问题 写出下列程序的运行结果【  】。
   #include<iostream. h>
   void func(double x, int &part1, double &part2){
        part1=int(x)+500:
        part2=(x+500-part1)*100;
  }
  void main( ){
        int n;
        double x, f;
         x=1001. 0103;
        func (x, n, f):
        cout<<"Part 1="<<n<<" , part2="<<f<<end1
   }

选项

答案part1=1501, part2=1.03

解析
转载请注明原文地址:https://kaotiyun.com/show/55kp777K
0

最新回复(0)