printf("%f",10/3); 答案是多少?----不定参数

#include <stdio.h>
void main()
{

printf(
"%f/n",10/3
);


}

VC
++6
.0运行错误



C/C++ code
    
    
    
    
#include <stdio.h> void main() { printf("%d/n",10/3 ); } 结果为:3

 

C/C++ code
    
    
    
    
#include <stdio.h> void main() { printf("%f/n",(float)10/3 ); } 结果为:3.3333333

  
  
  
  
不定参数的应用:http://blog.csdn.net/arong1234/archive/2008/05/18/2456455.aspx

你可能感兴趣的:(printf("%f",10/3); 答案是多少?----不定参数)