摘要: #include<iostream>#include<math.h>using namespace std;int ABS(int a){ return a>0?a:-a;}int main(){ int a,b; int flage; int turn; int temp,tempa,tempb; while(cin>>a>>b) { tempa=ABS(a); tempb=ABS(b); if(tempa!=0||tempb!=0) { if(tempa!=tempb||(a>0&&a+b==0)) { temp= 阅读全文
posted @ 2013-03-08 23:02 一把刷子 阅读(183) 评论(0) 推荐(0) 编辑