3_4.cpp
资源名称:c.rar [点击查看]
上传用户:puke2000
上传日期:2022-07-25
资源大小:912k
文件大小:0k
源码类别:

C#编程

开发平台:

Visual C++

  1. #include <iostream.h>
  2. void main()
  3. {
  4.   int x;
  5.   cout <<"please input x:n";
  6.   cin >>x;
  7.   if(x<=-1)
  8.     cout <<(x-1) <<endl;
  9.   if(x>-1 && x<=2)
  10.     cout <<2*x <<endl;
  11.   if(2<x && x<=10)
  12.     cout <<x*(x+2);
  13. }