小题练习



交换两值
#include<stdio.h>
#include<windows.h>
int main()
{
int a , b , c ;
scanf("%d%d", &a, &b);
c = a;
a = b;
b = c;
printf("%d %d\n", a, b);
system("pause");
return 0;
}








无临时变量交换两值
#include<stdio.h>
#include<windows.h>
int main()
{
int a = 0, b = 0;
scanf("%d%d", &a, &b);
a = a + b;
b = a - b;
a = a - b;
printf("%d %d\n", a, b);
system("pause");
return 0;
}








十个数最大值
#include<stdio.h>
#include<windows.h>
int main()
{
int max = 0;
int arr[10] = { 0 };
int  i;
printf("enter 10 integer numbers:");
for (i = 0; i < 10; i++)
{
scanf("%d",&arr[i]);
}
for (i = 0; i < 10; i++)
{
if (arr[i]>=max)
{
max = arr[i];
}
}

printf("The largest number is %d\n", max);
system("pause");
return 0;
}




二进制1的个数
#include<stdio.h>
#include<windows.h>
int count_one_bits(unsigned int value);
int main()
{
int num,COUNT;
scanf("%d",&num);
COUNT = count_one_bits(num);//计算二进制中的1的个数
printf("%d\n",COUNT );
system("pause");
return 0;
}
int count_one_bits(unsigned int value)
{
int count=0;
while (value)
{
value = value&(value - 1);//按位与&
count++;
}
return count;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值