天天看點

第一章第六題

#include<stdio.h>

int main()

{

 int a=1;

 float b=3.14;

 char c='C';

 printf("%d\n%f\n%c\n",a,b,c);

 return 0;

}

第一章第六題

繼續閱讀