Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
6120 niejiahao 删数 C++ 解答错误 0 MS 284 KB 312 2022-11-27 13:43:47

Tests(0/4):


#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]; } }


测评信息: