Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
9715 王兮 判断字符串是否是回文串 C++ 解答错误 0 0 MS 256 KB 254 2020-11-18 18:49:04

Tests(0/5):


#include<bits/stdc++.h> using namespace std; char a[200],b[200]; int main(){ double s,m; int n; cin>>n>>a>>s; m=s; strcpy(b,a); for(int i=1;i<=n-1;i++){ cin>>a>>s; if(s>m){ strcpy(b,a); m=s; } } cout<<b; return 0; }


测评信息: