C语言数字类型

// 
#include <stdio.h>

int main() {

   short  s;
   int    i;
   long   l;
   float  f;
   double d;

   s = 10;
   i = 1000;
   l = 1000000;
   f = 230.47;
   d = 30949.374;

   printf( "s: %d/n", s);
   printf( "i: %d/n", i);
   printf( "l: %ld/n", l);
   printf( "f: %.3f/n", f);
   printf( "d: %.3f/n", d);
}

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/265304.html

(0)
上一篇 2022年6月7日
下一篇 2022年6月7日

相关推荐

发表回复

登录后才能评论