天天看点

第一章第六题

#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;

}

第一章第六题

继续阅读