摘要: #include #include int main() { int t,i,num; char a[]={'C','H','O','N'}; double n[]={12.01,1.008,16.00,14.01};//此所谓之常量数组的妙用 char s[105]; double sum; scanf("%d",&t); whil... 阅读全文
posted @ 2017-07-17 23:56 Roni_i 阅读(376) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 #include 3 int main() 4 { 5 char s[100]; 6 scanf("%s",s); 7 int sum=0; 8 int cnt=0; 9 for(int i=0;i<strlen(s);i++) 10 { 11 if(s[i]=='O') 12 ... 阅读全文
posted @ 2017-07-17 19:55 Roni_i 阅读(180) 评论(0) 推荐(0) 编辑
摘要: Eddy's AC难题-2200 阅读全文
posted @ 2017-07-17 15:22 Roni_i 阅读(158) 评论(0) 推荐(0) 编辑
摘要: 1. 利用数学公式lg(n!)=lg(2)+lg(3)+....+lg(n) 求解 2. 阅读全文
posted @ 2017-07-17 11:58 Roni_i 阅读(137) 评论(0) 推荐(0) 编辑
摘要: 题目要求一个数至少出现(n+1)/2次。用cnt来记录解出现的次数,出现了正确解就令cnt自增1,不是正确解就使cnt自减1。 那么,正确解对应的cnt一定是不小于1的。可以用一个极端的例子来说明下:输入3 3 3 3 3 3 2 1 5 6 8,开始当ans=3时,cnt=6, 那么继续执行num 阅读全文
posted @ 2017-07-17 10:09 Roni_i 阅读(206) 评论(0) 推荐(0) 编辑
摘要: #include int main() { int N; int n,m; int a,b; int cas; scanf("%d",&N); while(N--) { cas=1;//必须在这儿初始化cas,坑 while(scanf("%d%d",&n,&m),n||m) { ... 阅读全文
posted @ 2017-07-17 09:08 Roni_i 阅读(229) 评论(0) 推荐(0) 编辑