在 C++ 中,要比較兩個 unsigned short
(通常簡稱為 ushort
)類型的數值大小,您可以直接使用標準的比較運算符,如 <
、>
、==
等
#include<iostream>
int main() {
unsigned short num1 = 42;
unsigned short num2 = 65000;
if (num1 < num2) {
std::cout << "num1 is smaller than num2"<< std::endl;
} else if (num1 > num2) {
std::cout << "num1 is greater than num2"<< std::endl;
} else {
std::cout << "num1 and num2 are equal"<< std::endl;
}
return 0;
}
在這個示例中,我們創建了兩個 unsigned short
類型的變量 num1
和 num2
,并使用比較運算符判斷它們之間的大小。根據比較結果,我們輸出相應的信息。