ما الكلمة الرئيسية التي نستخدمها لإنشاء متغير من النوع المنطقي؟
Anonymous Quiz
13%
A.Boolean
15%
B.boolean
64%
C.bool
8%
D.Bool
❤1
#include <iostream>
using namespace std;
int main() {
int number = 7;
bool result = (number != 7);
cout << result;
return 0;
}
using namespace std;
int main() {
int number = 7;
bool result = (number != 7);
cout << result;
return 0;
}
👍1
❤1
👍1
❤1
🤔19👎3