最后代码DOUBLE和float没差
#include <stdio.h>int main() { char c = 'a'; int n = c; //将c赋值给n float f =c; //将c赋值给f float d = c;//将c赋值给d printf("%d\n",n); printf("%f\n",f); printf("%lf\n",d); return 0; }
#include <stdio.h>int main() { char c = 'a'; int n = c; //将c赋值给n float f =c; //将c赋值给f float d = c;//将c赋值给d printf("%d\n",n); printf("%f\n",f); printf("%lf\n",d); return 0; }
2018-09-05
举报