This commit is contained in:
2026-02-25 12:50:54 +08:00
parent e7270b2dad
commit 181304d736
2 changed files with 21 additions and 0 deletions

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;
}