博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
woj 1571 - H - Things after school (数论)
阅读量:5166 次
发布时间:2019-06-13

本文共 715 字,大约阅读时间需要 2 分钟。

题意:

思路:

 

#include
#include
#include
#include
#include
#include
#include
//const int maxn;using namespace std;char s[1000];int num[5];int main(){ int n; int i,j,k; int que; scanf("%d",&n); while(n--) { int cnt=0; for(i=0;i<3;i++) { scanf("%s",s); if(s[0]!='?') { int temp=0; int wei=1; for(j=strlen(s)-1;j>=0;j--) { temp+=(s[j]-'0')*wei; wei*=10; } num[i]=temp; } else que=i; } if(que==0) { num[0]=(num[2]+2*num[1])/2; } if(que==1) { num[1]=(2*num[0]-num[2])/2; } if(que==2) { num[2]=2*num[0]-2*num[1]; } printf("%d\n",num[que]); } return 0;}

  

转载于:https://www.cnblogs.com/sola1994/p/4443924.html

你可能感兴趣的文章
C语言第三次博客作业---单层循环结构
查看>>
DevExpress 程序运行后 layoutView 卡片大小发生变化
查看>>
WPF DevExpress 中GridControl如何设置选中单元格的Style
查看>>
查看python库文档
查看>>
Python网络编程_抓取百度首页代码(注释详细)
查看>>
js动态插入标签代码(insertAdjacentHTML)
查看>>
1.开发准备
查看>>
POJ 1463 树型DP
查看>>
关于SubSonic3.0插件使用SubSonic.Query.Select查询时,字段类型为tinyint时列丢失问题的Bug修复...
查看>>
自动生成小学生四则运算(皮!)
查看>>
rsync 同步
查看>>
centos su命令
查看>>
CLR:基元类型、引用类型和值类型
查看>>
Mongo的备份和恢复(mongodump 和mongorestore )
查看>>
第六章(jQuery 与 Ajax 的应用)(6.6 序列化元素 6.7 jQuery 中的 Ajax 事件)
查看>>
dubbo序列化hibernate.LazyInitializationException could not initialize proxy - no Session懒加载异常的解决...
查看>>
为DataGrid 写一个 DropDownListColumn
查看>>
支付宝移动支付之IOSApp调用支付宝钱包
查看>>
学会分享和交流
查看>>
hdu 1233:还是畅通工程
查看>>