基础C语言错误老师叫我们写一个基础的C语言,就是水果店之类的.但是为什么会出现应用程序错误呢?void main(){float amount;char fruit[8]; printf("\n\n*^O^*我们店有苹果、桃子、香蕉、哈密瓜、葡萄.\n\n
来源:学生作业帮助网 编辑:六六作业网 时间:2024/11/18 06:32:47
基础C语言错误老师叫我们写一个基础的C语言,就是水果店之类的.但是为什么会出现应用程序错误呢?void main(){float amount;char fruit[8]; printf("\n\n*^O^*我们店有苹果、桃子、香蕉、哈密瓜、葡萄.\n\n
基础C语言错误
老师叫我们写一个基础的C语言,就是水果店之类的.
但是为什么会出现应用程序错误呢?
void main()
{
float amount;
char fruit[8];
printf("\n\n*^O^*我们店有苹果、桃子、香蕉、哈密瓜、葡萄.\n\n");
printf("\n");
printf("\t\t谢谢!我们将派人给您送去%.2f斤%s.\n",amount,fruit);
}
下面也是出现这样的错误!
main()
{
char name[10];
char gender[4];
int age;
printf("\n\t\t个人信息收集");
printf("\n\t\t");
printf("\t\t\t你名叫%s,%s,%d",name,gender,age);
}
基础C语言错误老师叫我们写一个基础的C语言,就是水果店之类的.但是为什么会出现应用程序错误呢?void main(){float amount;char fruit[8]; printf("\n\n*^O^*我们店有苹果、桃子、香蕉、哈密瓜、葡萄.\n\n
#include <stdio.h>
#include <stdlib.h>
int main(void)
{
float amount;
char fruit[8];
printf("\n\n*^O^*我们店有苹果、桃子、香蕉、哈密瓜、葡萄.\n\n");
printf("\n");
printf("\t\t谢谢!我们将派人给您送去%.2f斤%s.\n",amount,fruit);
return 0;
}