1 Star 1 Fork 0

周金洪/Krause

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
11.c 398 Bytes
一键复制 编辑 原始数据 按行查看 历史
#define _CRT_SECURE_NO_WARNINGS 1
#include<stdio.h>
int main()
{
int x = 0;
int y = 0;
int m = 0;
int n = 0;
int count = 0;
scanf("%d %d", &x, &y);
for (int i = 0; i < 32; i++)
{
m = x & 1;
x = x >> i;
n = y & 1;
y = y >> i;
if (m == n)
{
count++;
}
}
printf("%d\n", count);
return 0;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/longyeqiu/krause.git
git@gitee.com:longyeqiu/krause.git
longyeqiu
krause
Krause
master

搜索帮助