C语言 { double d;float f;long l;int i; i=f=l=d=20/3; printf("%d\n%ld\n%f\n%f\n",i,l,f,d); }

日期:2018-02-28 14:56:28 人气:1

C语言 { double d;float f;long l;int i; i=f=l=d=20/3; printf("%d\n%ld\n%f\n%f\n",i,l,f,d); }

#include extern int system(const char *);int main(){ double d;float f;long l;int i; i=l=f=d=20/3.0; printf("%d\n%ld\n%f\n%lf\n",i,l,f,d); i=l=f=d=20/3; printf("\n%d\n%ld\n%f\n%lf\n",i,l,f,d);
    A+
热门评论