#define _CRT_SECURE_NO_WARNINGS
//求一个数中二进制中一的个数
//#include<stdio.h>
//int main()
//{
// int a = 0;
// scanf("%d", &a);
// int i = 0;
// int count = 0;
// for (i = 0; i < 32; i++)
// {
// if ((a & 1) == 1)
// {
// count++;
// }
// a = a >> 1;
// }
// printf("%d", count);
// return 0;
//}
//#include<stdio.h>
//int main()
//{
// int x, y;
// scanf("%d %d", &x, &y);
// int count = 0;
// int i = 0;
// int put = 0;
// count = x ^ y;
// for (i = 0; i < 32; i++)
// {
//
// if (count & 1 == 1)
// {
// put++;
// }
// count = count >> 1;
// }
// printf("%d\n", put);
// return 0;
//}
//打印整数二进制的奇数位和偶数位
//#include<stdio.h>
//int main()
//{
// int x = 5;
// int i = 0;
// int count = 0;
// for (i = 1; i <= 32; i++)
// {
// if (i % 2 != 0)
// {
// printf("偶数:%d\n",x & 1);
// }
// else
// {
// printf("奇数,%d\n", x & 1);
// }
// x = x >> 1;
// count++;
// }
// printf("%d", count);
// return 0;
//}
//#include<stdio.h>
//int main()
//{
// int a = 3;
// int b = 5;
// int c = a ^ b;
// a = c ^ a;
// b = c ^ b;
// printf("%d %d\n",a,b);
// return 0;
//}
#include<stdio.h>
#include<stdlib.h>
//int strlen(char* str)
//{
// char* tp = str;
// while (*str)
// {
// str = str + 1;
// }
// return str - tp;
//}
//int main()
//{
// char arr[] = "abcdefgh";
// int i = 0;
// for (i = 0; i < 8; i++)
// {
// printf("%c\n", arr[i]);
// }
// /*int len = strlen(arr);
// printf("%d\n", len);*/
// return 0;
//}
没有合适的资源?快使用搜索试试~ 我知道了~
资源推荐
资源详情
资源评论
收起资源包目录
Project8.rar (23个子文件)
Project8
Project8.sln 1KB
.vs
Project8
v16
Browse.VC.db 1.64MB
.suo 26KB
ipch
AutoPCH
4980e508206645bb
TEST.ipch 1.94MB
Project8
test.c 1KB
Project8.vcxproj.user 165B
Project8.vcxproj 7KB
Project8.vcxproj.filters 943B
Debug
test.obj 7KB
Project8.log 80B
vc142.idb 35KB
vc142.pdb 76KB
Project8.tlog
CL.write.1.tlog 376B
Project8.lastbuildstate 156B
CL.command.1.tlog 710B
link.command.1.tlog 1KB
link.read.1.tlog 3KB
link.write.1.tlog 376B
CL.read.1.tlog 3KB
Project8.exe.recipe 278B
Project8.ilk 466KB
Debug
Project8.exe 40KB
Project8.pdb 1.04MB
共 23 条
- 1
资源评论
蜡笔小流
- 粉丝: 2254
- 资源: 1074
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- chan算法原理及C语言实现.docx
- 基于Matlab的破片着靶图像识别系统设计
- 数字人开源项目,旨在实现实时、互动的数字人流媒体传输,可做毕业设计
- 基于Python的图书管理系统
- Aloha模仿学习复现
- Sentinel RMS license 5.0 Beta.rar 工具
- 基于MATLAB图像处理实现直线识别(拟合角平分线)
- VisualComponents Premium 4.9 OLP库卡仿真 KUKA.Sim lservrc.dat
- Dephi 12 控件之TMS VCL UI Pack v13.1.10.0.7z
- 小米6X-miui14安卓13定制资源 解锁bl状态fast模式刷写
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功