Vc206.cpp // 位元運算符號練習 #include <iostream.h> int main() { int a = 0x57, b = 0x93; // 宣告並啟始a, b 值 int x = ~ a, y = a & b; // 宣告並指定x, y 值
確定! 回上一頁