《C语言程序设计》实验1
1-5 输出不同类型的数据
Problem Description
用c语言的基本输出格式打印下列内容:
789
cd
6.990000
Input
无
Output
789
cd
6.990000
#include <stdio.h>
#include <stdlib.h>
int main()
{
printf("789\ncd\n6.990000");
return 0;
}
《C语言程序设计》实验1
1-5 输出不同类型的数据
Problem Description
用c语言的基本输出格式打印下列内容:
789
cd
6.990000
Input
无
Output
789
cd
6.990000
#include <stdio.h>
#include <stdlib.h>
int main()
{
printf("789\ncd\n6.990000");
return 0;
}