码迷,mamicode.com
首页 > 编程语言 > 详细

C++:地平线2019相关题

时间:2020-05-05 17:37:42      阅读:62      评论:0      收藏:0      [点我收藏+]

标签:运算符   sig   答案   std   space   解释   相关   unsigned   printf   

无符号数和有符号数相加

题目

#include "stdafx.h"
#include "stdlib.h"
#include <string>
#pragma warning( disable : 4996) 
#include <iostream>

using namespace std;

int main()
{
	unsigned int a = 6;
	int b = -20;
	(a + b > 6) ? puts(">6") : puts("<6");
	system("pause");
	return 0;
}

答案及解释

C++条件运算符:https://www.runoob.com/cplusplus/cpp-conditional-operator.html
输出:>6
解释:

int main()
{
	unsigned int a = 6;
	int b = -20;
	(a + b > 6) ? puts(">6") : puts("<6"); // a+b 按无符号数计算,结果为无符号数
	printf("a+b=%d\n",(a+b));    // -14, a+b=fffffff2,补码表示,赋值给%d有符号整型数,所以为-14
	printf("a+b=%x\n", (a + b)); // fffffff2
	system("pause");
	return 0;
}

C++:地平线2019相关题

标签:运算符   sig   答案   std   space   解释   相关   unsigned   printf   

原文地址:https://www.cnblogs.com/wt-seu/p/12831399.html

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