周五(作业例,复习函数)

#include <vector>
#include <iostream>

int main() {
    std::vector<int> my_vector = {1, 2, 3};
    my_vector[1] = 10;
    std::cout << my_vector[1] << std::endl; // 输出10
    return 0;
}

 

posted @ 2023-05-05 21:48  KuanDong24  阅读(6)  评论(0编辑  收藏  举报