C++

来源:互联网 发布:office mac 2016 破解 编辑:程序博客网 时间:2024/06/18 05:53
#include<iostream>


using namespace std;
int main()
{
  int   a,b,x,y;
  a=35;b=94;
  x=2*a-b/2;
  y=b/2-a;
  cout<<"x="<<x<<"   y="<<y<< endl;
 return 0;
}
0 0
原创粉丝点击