下列函数的功能是【 】。 #include<iostream. h> int Func(int a,int b) { if (a>b) return 1; else if(a==b) return

admin2013-05-30  20

问题 下列函数的功能是【 】。
    #include<iostream. h>
   int Func(int a,int b)
   {  
        if (a>b) return 1;
         else if(a==b) return 0;
         else return -1;
   }

选项

答案比较两个整数a和b的大小,若a>b则返回1,若a等于b,则返回0,否则返回-1。

解析
转载请注明原文地址:https://kaotiyun.com/show/m6Np777K
0

最新回复(0)