1 #8

Merged
violeteverisland merged 1 commits from dev_jiaolong into main 2026-02-25 13:05:37 +08:00
2 changed files with 21 additions and 0 deletions
Showing only changes of commit 71f12730cc - Show all commits

10
cin数据输入.cpp Normal file
View File

@@ -0,0 +1,10 @@
//
// Created by viole on 2026/2/25.
//
#include <iostream>
using namespace std;
int main() {
int num ;
cin >> num;
cout << num << endl;
}

11
布尔数据类型.cpp Normal file
View File

@@ -0,0 +1,11 @@
//
// 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;
}