xt3-10.cpp
上传用户:liubin
上传日期:2022-06-13
资源大小:85k
文件大小:0k
源码类别:

书籍源码

开发平台:

Visual C++

  1. #include <iostream>
  2. using namespace std;
  3. int main ( )
  4.   {int x,y;
  5.    cout<<"enter x:";
  6.    cin>>x;
  7.    if (x<1)                            
  8.       {y=x;
  9.        cout<<"x="<<x<<", y=x="<<y;
  10.       }
  11.    else if (x<10)                     // 1≤x<10 
  12.        {y=2*x-1;
  13.         cout<<"x="<<x<<", y=2*x-1="<<y;
  14.        }
  15.         else                           // x≥10 
  16.          {y=3*x-11;
  17.           cout<<"x="<<x<<", y=3*x-11="<<y;
  18.          }
  19.     cout<<endl;
  20. return 0;
  21. }