就这样!
修改printf() 函数的参数
第三题用C我还没想到什么办法.不过用类可以
#include <stdio.h>
class c
{
public:
bool operator>(const int i)
{
if(i==0) return false;
if(i==9) return true;
return false;
}
};
int main(void)
{
c s;
if (s > 0)
printf("1\n");
else if (s > 9)
printf("2\n");
else
printf("3\n");
return 0;
}