首页 > 编程语言 > 详细

c语言 7-2

时间:2021-05-18 23:00:35      阅读:29      评论:0      收藏:0      [点我收藏+]

 

1、

#include <stdio.h>
#include <math.h>

int main(void)
{
    unsigned x;
    int n;
    puts("please input an unsigned number and an integer.");
    printf("x = "); scanf("%u", &x);
    printf("n = "); scanf("%d", &n);
    
    (x << n) == x * (int)pow(2, n) ? printf("equally.\n") : printf("unequally.\n");
    (x >> n) == x / (int)pow(2, n) ? printf("equally.\n") : printf("unequally.\n");
    
    return 0;
}

技术分享图片

 

2、

#include <stdio.h>
#include <stdio.h>

int main(void)
{
    unsigned x;
    int n;
    puts("please input an unsigned number and an integer.");
    printf("x = "); scanf("%u", &x);
    printf("n = "); scanf("%d", &n);
    
    int left = x << n;
    int leftve = x;
    int i;
    for(i = 1; i <= n; i++)
    {
        leftve *= 2;
    }
    if(left == leftve)
        puts("left equally.");
    else
        puts("left unequally.");
        
    int right = x >> n;
    int rightve = x;
    for(i = 1; i <= n; i++)
    {
        rightve /= 2;
    }
    if(right == rightve)
        puts("right equally");
    else
        puts("right unequally");
            
    return 0;
}

技术分享图片

 

3、

#include <stdio.h>
#include <limits.h>

int main(void)
{
    unsigned x;
    puts("please input an unsigned integer.");
    do
    {
        printf("x = "); scanf("%u", &x);
        if(x > UINT_MAX)
            puts("It‘s too big!");
    }
    while(x > UINT_MAX);
    
    printf("verify left move 3 unit:  %u = %u\n", x << 3, x * 2 * 2 * 2);
    printf("verigy right move 3 unit:  %u = %u\n", x >> 3, x / 2 / 2 / 2);
    
    return 0;
}

技术分享图片

 

c语言 7-2

原文:https://www.cnblogs.com/liujiaxin2018/p/14782423.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!