求助,有关C代码问题
//输入一组数,输出最大值,空格分开,输入-1结束#include <stdio.h>
#include <stdlib.h>
int main(void)
{
int num, count, max;
int *ptr = NULL;
num = count = max = 0;
do
{
scanf("%d", &num);
count++;
ptr = realloc(ptr, count * sizeof(int));
ptr = num;
}
while (num != -1);
for (int i = 0; i < count; i++)
{
max = max > ptr ? max : ptr;
}
printf("%d", max);
return 0;
}
此代码报错,烦请大佬帮忙看一下,谢谢。 #include <stdio.h>
#include <stdlib.h>
int main(void)
{
int i , num , count , max ;
int * ptr = NULL ;
num = count = max = 0 ;
scanf("%d", & num) ;
while(num != -1) {
count ++ ;
ptr = (int *) realloc(ptr , sizeof(int) * count) ;
ptr = num ;
scanf("%d", & num) ;
}
for(i = 1 , max = ptr ; i < count ; i ++) if(ptr > max) max = ptr ;
free(ptr) ;
printf("%d\n" , max) ;
} 这样写它不简单吗?
#include <stdio.h>
int main(void)
{
int i , max , m ;
for(max = i = 0 ;;) {
scanf("%d" , & m) ;
if(m == - 1) break;
if(m > max) max = m ;
}
printf("%d\n" , max) ;
} 本帖最后由 李京 于 2021-2-23 23:03 编辑
你的代码我在dev-c++上测试了,
17行在realloc前面加上(int *)就行
至于为什么要加,
我还没有想明白,不过很有可能和void指针有关
有人知道的会可以解答一下吗 李京 发表于 2021-2-23 22:48
你的代码我在dev-c++上测试了,
17行在realloc前面加上(int *)就行
因为你的源文件名是 .cpp,这是c++源文件,改成 .c才是C语言
人造人 发表于 2021-2-23 23:02
因为你的源文件名是 .cpp,这是c++源文件,改成 .c才是C语言
好吧,的确,我在vs上有试了下,结果可以,,,
感谢 jackz007 发表于 2021-2-23 21:02
这样写它不简单吗?
额,主要是想学写下几个内存管理函数 for (int i = 0; i < count; i++) 这里把int去掉
重新在前面定义一下int i;就好了 莳夢shy 发表于 2021-2-25 15:12
for (int i = 0; i < count; i++) 这里把int去掉
重新在前面定义一下int i;就好了
C99不支持么? 明日尘 发表于 2021-2-25 17:33
C99不支持么?
Visual C++ 6.0不支持C99
这里说了https://fishc.com.cn/thread-121313-1-1.html 莳夢shy 发表于 2021-2-25 20:16
Visual C++ 6.0不支持C99
这里说了https://fishc.com.cn/thread-121313-1-1.html
抱歉,忘记说我用的是dev—cpp
明日尘 发表于 2021-2-26 20:32
抱歉,忘记说我用的是dev—cpp
17行realloc前面加一个
(int *)
就行了 jackz007 发表于 2021-2-23 21:02
这样写它不简单吗?
感谢帮助
页:
[1]