首页
技术博客
登录
6mi
u
盘
搜
搜 索
技术博客
lq1.3如何找数组中落单的那个数
lq1.3如何找数组中落单的那个数
tech
2022-08-09
160
//a^a=0;a^0=a
#
include
<stdio.h>
int
main
(
)
{
int
a
[
11
]
=
{
0
,
0
,
1
,
1
,
2
,
2
,
3
,
3
,
4
,
4
,
5
}
;
int
b
=
a
[
0
]
;
//直接把数组中的元素异或一遍
for
(
int
i
=
1
;
i
<
11
;
i
++
)
{
b
=
b
^
a
[
i
]
;
}
printf
(
"%d"
,
b
)
;
}
转载请注明原文地址:https://tech.qufami.com/read-1970.html
最新回复
(
0
)