#include
int main() { char c = 'a'; int n =c; //将c赋值给n float f = c ; //将c赋值给f double d = c ; //将c赋值给d printf("%d\n",n); printf("%f\n",f); printf("%lf\n",d); return 0; } 通过了,可为啥运行之后什么都没有?你需要一个头文件#include<stdio.h>,否则运行不了,如果命令提示符一闪而过你需要再加一个头文件,#include<stdlib.h>然后再return 0上方加入system语句中的暂停system("pause");
#include后面没有加库函数,应该为#include<stdio.h>