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