#include <iostream>
using namespace std;
int main() {
bool a = 0;
bool b = 1;
bool c = 12;
cout << " " << a << " " << b << " " << c ; // bool은 0제외 모두 True -> 0 1 1
return 0;
}
728x90
#include <iostream>
using namespace std;
int main() {
bool a = 0;
bool b = 1;
bool c = 12;
cout << " " << a << " " << b << " " << c ; // bool은 0제외 모두 True -> 0 1 1
return 0;
}