朴实冬天

文章
7
资源
0
加入时间
2年10月21天

滚动鼠标,判断是下滚还是上滚

/** *滚动鼠标,判断是下滚还是上滚 * * 判断滚轮向上或向下在浏览器中也要考虑兼容性,现在五大浏览器(IE、Opera、Safari、Firefox、Chrome)中Firefox 使用detail,其余四类使用wheelDelta; * 两者只在取值上不一致,代表含义一致,detail与wheelDelta只各取两个值,detail只取±3,...

CodeForces-266B Queue at the School

#include <iostream>#include <cstring>#include <cstdio>using namespace std;const int nt_max = 50 + 5;int n, t, cnt;char Queue[nt_max];int main(){ while(~scanf("%d %d", & n, & t)) {