【PTA練習で発生した問題】warning:ignoring return value of‘scanf’,declared with attribute warn_unused_result

1975 ワード

		    PTA  ,         ,          ?
	         ?
		 :         ,  if,   void  ,      
	     main       。  PTA   ,      main      。

質問:a.c:In function‘main’:a.c:13:5:warning:ignoring return value of‘scanf’,declared with attribute warn_unused_result [-Wunused-result] scanf("%d", &N); ^~~~~~~~~~~~~~~ a.c:15:9: warning: ignoring return value of ‘scanf’, declared with attribute warn_unused_result [-Wunused-result] scanf("%f", &A[i]);
題目:自定型元素の序列の中位数を求める本題は1つの関数を実現することを要求して、N個の集合元素A[]の中位数を求めて、つまり序列の中で第⌊N/2+1⌋の大きい元素.ここで、集合要素のタイプはカスタムElementTypeです.関数インタフェース定義:ElementType Median(ElementType A[],int N);ここで、所与の集合要素は配列A[]に格納され、正の整数Nは配列要素の個数である.この関数はN個のA[]要素の中位数を返さなければならず、その値もElementTypeタイプでなければならない.
入力サンプル:3 12.3 34-5出力サンプル:12.30
コードは次のとおりです.
#include 

#define MAXN 10
typedef float ElementType;

ElementType Median( ElementType A[], int N );
void quick_sort ( ElementType A[], int left, int right );
int Partition(ElementType A[], int left, int right);

int main ()
{
    ElementType A[MAXN];
    int N, i;

    scanf("%d", &N);
    for ( i=0; iMAXN)
    {
        N=MAXN;
    }
	int left=0, right=N-1;
	int m=0;
	quick_sort (A,left,right);//      
	m = N/2;
	return A[m];//         
}

void quick_sort (ElementType A[], int left, int right)
{
	if (left>=right)//      
		{
			return;
		}
	else
	{
		int pivotpos=Partition(A,left,right);//Partition()     
		quick_sort (A, left, pivotpos-1);//      
		quick_sort (A, pivotpos+1, right);//      
		return;
	}
}

int Partition(ElementType A[], int left, int right)
{
	int i,j;
	ElementType pivot=A[left];//                  ,pivot   
	i=left;
	j=right;
	while (i=pivot)
			{j--;}
		A[i]=A[j];//              
		while (i

PS:初心者ですが、不適切なものがありますか.ご意見をお待ちしております.ありがとうございます.