mirror of
http://106.12.3.193:3000/violeteverisland/learn_cpp.git
synced 2026-03-07 17:17:33 +08:00
11 lines
187 B
C++
11 lines
187 B
C++
//
|
|
// Created by viole on 2026/2/25.
|
|
//
|
|
#include "iostream"
|
|
using namespace std;
|
|
int main() {
|
|
bool flag = 1;
|
|
bool flag2 = 0;
|
|
cout << flag << endl;
|
|
cout << flag2 << endl;
|
|
} |