Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
6126 niejiahao 删数 C++ 解答错误 1 MS 268 KB 310 2022-11-27 14:07:40

Tests(0/4):


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


测评信息: