c语言错误解析 :下面是代码:请问错在哪儿?为什么错了?怎么改正?
#include<stdio.h>#include<conio.h>#include<string.h>#include<stdlib.h>#include<ctype....
#include <stdio.h>
#include <conio.h>
#include <string.h>
#include <stdlib.h>
#include <ctype.h>
#define BUFFER_LEN 256
#define NUM_P 42
int main(void)
{
char input[BUFFER_LEN];
char *pinput = input;
char buffer[BUFFER_LEN];
double pS[NUM_P];
double *ppS = pS;
int index = 0;
int count = 0;
int j =0;
double zhuanhuan = 0;
printf("请输入任意天数的浮点温度值,其中6个值为一天,温度值之间用加号隔开\n:");
while((*pinput++ = getchar()) != '\n');
*(pinput-1) = '\0';
pinput = input;
while(*pinput != '\0')
{
if(count != 0 && count%5 == 0)
{
ppS = (double *)malloc(sizeof(double)*index);
if(ppS==NULL)
{
printf("x");
getch();
return 1;
}
strcpy(pS[j++],zhuanhuan);
zhuanhuan = 0;
}
index = 0;
while(isdigit(*(pinput)) || *pinput == '.')
buffer[index++] = *pinput++;
if(*pinput== '+'|| *pinput =='\0')
{
++count;
*pinput++;
buffer[index]='\0';
zhuanhuan += atof(buffer);
}
}
printf("%d\n",j);
if(count <5)
printf("还不到一天6个浮点温度值\n");
else
for(int k = 0; k<j; k++)
{
printf("低%d天的平均温度值是%f\n",k+1,pS[k]/6);
}
getch();
return 0;
} 展开
#include <conio.h>
#include <string.h>
#include <stdlib.h>
#include <ctype.h>
#define BUFFER_LEN 256
#define NUM_P 42
int main(void)
{
char input[BUFFER_LEN];
char *pinput = input;
char buffer[BUFFER_LEN];
double pS[NUM_P];
double *ppS = pS;
int index = 0;
int count = 0;
int j =0;
double zhuanhuan = 0;
printf("请输入任意天数的浮点温度值,其中6个值为一天,温度值之间用加号隔开\n:");
while((*pinput++ = getchar()) != '\n');
*(pinput-1) = '\0';
pinput = input;
while(*pinput != '\0')
{
if(count != 0 && count%5 == 0)
{
ppS = (double *)malloc(sizeof(double)*index);
if(ppS==NULL)
{
printf("x");
getch();
return 1;
}
strcpy(pS[j++],zhuanhuan);
zhuanhuan = 0;
}
index = 0;
while(isdigit(*(pinput)) || *pinput == '.')
buffer[index++] = *pinput++;
if(*pinput== '+'|| *pinput =='\0')
{
++count;
*pinput++;
buffer[index]='\0';
zhuanhuan += atof(buffer);
}
}
printf("%d\n",j);
if(count <5)
printf("还不到一天6个浮点温度值\n");
else
for(int k = 0; k<j; k++)
{
printf("低%d天的平均温度值是%f\n",k+1,pS[k]/6);
}
getch();
return 0;
} 展开
展开全部
strcpy(pS[j++],zhuanhuan);
你这个函数有问题啊,这个是字符或着是字符串复制函数,你不能用double型的啊!
char *strcpy(char *dest,char *src);
改为:
pS[j]=zhuanhuan;
j++;
你这个函数有问题啊,这个是字符或着是字符串复制函数,你不能用double型的啊!
char *strcpy(char *dest,char *src);
改为:
pS[j]=zhuanhuan;
j++;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
\0相当于0,所以二进制数中出现0就跳出循环,只输出几个1
‘ ’是空格,ascii码是32,可以做为结尾的标志,因此没问题
也可以改成2,3什么的,只要不是0,1就行
‘ ’是空格,ascii码是32,可以做为结尾的标志,因此没问题
也可以改成2,3什么的,只要不是0,1就行
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
strcpy(pS[j++],zhuanhuan);
这句错了,pS[]是double,zhuanhuan也是double,而strcpy是针对字符串的,所以不能完成拷贝,改成:pS[j++] = zhuanhuan;
这句错了,pS[]是double,zhuanhuan也是double,而strcpy是针对字符串的,所以不能完成拷贝,改成:pS[j++] = zhuanhuan;
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询