码迷,mamicode.com
首页 > 其他好文 > 详细

HDU 2700 Parity

时间:2017-03-18 10:56:17      阅读:130      评论:0      收藏:0      [点我收藏+]

标签:while   span   ret   one   style   str   include   pen   stream   

奇偶校验

 1 #include <iostream>
 2 #include <stdio.h>
 3 #include <string.h>
 4 #define READ() freopen("in.txt", "r", stdin);
 5 using namespace std;
 6 
 7 int main()
 8 {
 9     //READ()
10     char str[256];
11     while (gets(str))
12     {
13         if (str[0] == #) break;
14         int len = strlen(str);
15         int one = 0, zero = 0;
16         for (int i = 0; i < len; i++)
17         {
18             if (str[i] == 0) zero++;
19             else if (str[i] == 1) one++;
20             else break;
21             putchar(str[i]);
22         }
23         if (str[len-1] == e)
24         {
25             if (one % 2 == 0) puts("0");
26             else puts("1");
27         }
28         else
29         {
30             if (one % 2 == 0) puts("1");
31             else puts("0");
32         }
33     }
34     return 0;
35 }

 

HDU 2700 Parity

标签:while   span   ret   one   style   str   include   pen   stream   

原文地址:http://www.cnblogs.com/oscar-cnblogs/p/6571936.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!