//语言:C++,编译环境:Microsoft Visual Studio 2005//代码如下: #include <iostream> using namespace std;class Integer { public:int compareTo(int a,int b){ if(a>b) return 1;else if(a<b) return -1;else return 0;} };int main(){ int num1,num2;Integer i;cout<<"请输入...
void max(int a, int b){ if (a > b) printf("%d", a);else printf("%d", b);} ...
1、 编写shell脚本,实现如下功能:(1)从命令行读入2个整数;(2)对两个数进行大小比较;(3)在屏幕上输出比较结果;(4)写出该脚本的执行方法或流程。(共12分)