临时文件修改

This commit is contained in:
2025-03-19 14:10:44 +08:00
parent f97d464728
commit 92429de3c9

View File

@@ -1,12 +1,18 @@
#include<bits/stdc++.h>
using namespace std;
const int N = 200;
int a[N];
int b[N] = {0, 5, 6, 8, 6, 9, 1, 6, 1, 2, 4, 9, 1, 9, 8, 2, 3, 6, 4, 7, 7, 5, 9, 5, 0, 3, 8, 7, 5, 8, 1, 5, 8,
6, 1, 8, 3, 0, 3, 7, 9, 2, 7, 0, 5, 8, 8, 5, 7, 0, 9, 9, 1, 9, 4, 4, 6, 8, 6, 3, 3, 8, 5, 1, 6, 3, 4, 6, 7,
0, 7, 8, 2, 7, 6, 8, 9, 5, 6, 5, 6, 1, 4, 0, 1, 0, 0, 9, 4, 8, 0, 9, 1, 2, 8, 5, 0, 2, 5, 3, 3};
int main(){
string s = "hello world";
char *str = "hello world";
char *str_1 = &str[2];
str++;
cout << str << endl;
for(int i = 1; i <= 100; i++){
cin >> a[i];
}
for(int i = 1; i <= 100; i++){
cout << a[i] << ", ";
}
return 0;
}