首页 > 代码库 > c的开始,求最大数。

c的开始,求最大数。

#include<stdio.h>

int main ()

{

        int i,x,max=1;

        printf("请输入数字\n");

        for(;;i++)

        {

              scanf("%d",&x);

         if(0==x) break;

         if(max<x)

        {

             max=x;

         }

         printf("最大数=%d\n",max);

  

 

 

       return 0;

      }

       

 

 

 

 

 

}

c的开始,求最大数。