首页 > 代码库 > 功能:自动类型转换

功能:自动类型转换

功能:自动类型转换

#include<stdio.h>

main()

{

   float x,y;

   long m,n;

   x=3/2+8/3;

   y=3.0/2+8/3.0;

   m=1*2*3*4*5*6*7*8*9;

   n=1L*2*3*4*5*6*7*8*9;

   printf("x=%f,y=%f,m=%ld,n=%ld\n",x,y,m,n);

}

功能:自动类型转换 - 文豪 - WELCOME MY BLOG.


本文出自 “努力奋斗,互相提高” 博客,请务必保留此出处http://c10086.blog.51cto.com/6433044/1413853