为啥单个可以,管道就不行了

#include<stdio.h>


int main()

{

   int s,count;

   scanf("%d %d",&s,&count);

   float avg;

   avg = s / count;

   printf("The average value is %.3f\n",avg);

   return 0;

}



#include<stdio.h>


int main()

{

    printf("Input some int value (end by 0):\n");

    int i,s=0,count=0;

    int flag=1;

    while(flag){

        scanf("%d",&i);

        if(i == 0) break;

        s+=i;

        count++;

    }

    printf("%d %d\n",s,count);

    return 0;

}


板牙兔兔
浏览 919回答 1
1回答

田心枫

什么管道?
打开App,查看更多内容
随时随地看视频慕课网APP