このコードは、コードブロック 10.05 でコンパイルしている間、私の PC で完全に正常に動作します。コードはエラーや警告をまったく出しません! しかし、それをオンラインのコーディング ジャッジ コミュニティに提出すると、コンパイル エラーが返されます。これが私のコードです:
#include<stdio.h>
#include<stdlib.h>
int main()
{
int j=1;
while(j=1){
int x,y,i,j,num,count=0,p,k;
for(;;){
printf("enter two integers. they must not be equal and must be between 1 and 100000\n");
scanf("%d%d",&i,&j);
if(i>=1 && i<100000 && j>=1 && j<100000 && i!=j){
break;
}
else{
printf("try the whole process again\n");
}
}
if(i>j){
x=i;
y=j;
}
else{
x=j;
y=i;
}//making x always greater than y
int *cyclelength=(int *)malloc(5000*sizeof(int));
if (NULL==cyclelength){
printf("process aborted");
return 0;
}
else{
/*solution part for the range of number. and solution for each number put into cyclelength.*/
num=y;
while(num<=x){
p=1;
k=num;
while(k!=1){
if(k%2==0)
k=k/2;
else
k=3*k+1;
p+=1;
}
cyclelength[count]=p;
num+=1;
count+=1;
}
int c=0;
int max=cyclelength[c];
for(c=0;c<x-y-1;c+=1){
if(max<cyclelength[c+1]){
max=cyclelength[c+1];
}
}
free(cyclelength);
cyclelength = NULL;
printf("%d,%d,%d\n",i,j,max);
}
}
}
ANSI C 4.1.2 - オプション付きの GNU C コンパイラーの下でオンライン コミュニティに提出しようとすると、 -lm -lcrypt -O2 -pipe -ansi -DONLINE_JUDGEこの形式になります。彼らは私にコンパイルエラーメッセージを送ります!
Our compiler was not able to properly proccess your submitted code. This is the error returned:
code.c: In function 'main':
code.c:25:10: error: expected expression before '/' token
code.c:27:19: error: 'cyclelength' undeclared (first use in this function)
code.c:27:19: note: each undeclared identifier is reported only once for each function it appears in
code.c:10:18: warning: ignoring return value of 'scanf', declared with attribute warn_unused_result
なぜ私はこれを取得していますか?? 私のせいはどこですか?? コーディング形式が合っていませんか?? 私は初心者です!