修改第一题

This commit is contained in:
2024-09-26 10:15:05 +08:00
parent 7594461f7b
commit d1d0e49bd3
+1
View File
@@ -28,6 +28,7 @@ void output(book *books, int length) {
int main() { int main() {
book books[100]; book books[100];
int length = input(books); int length = input(books);
cout << length << endl;
output(books, length); output(books, length);
return 0; return 0;
} }