提交时间:2022-11-27 13:43:47
运行 ID: 6120
#include <iostream> using namespace std; int main() { int n,b; cin>>n; int homo[n]; for (int i=1; i<=n; i++) { cin>>homo[i]; } cin>>b; for (int t=1; t<=n; t++) { if(homo[t]==b) { homo[t]=homo[t+1]; } cout<<homo[t-1]; } }