题解 | #兔子的序列#

兔子的序列

https://www.nowcoder.com/practice/55fc2ebad3fd444bbb1754ba1b259762

#include <iostream>
#include <cmath>
#include <string>
using namespace std;

int main() {
    long int n;
    cin>>n;
    long int a[n];
    for(int i=0;i<n;i++){
        cin>>a[i];
    }
    int max= 0;

    for(int i=0;i<n;i++){
        if(sqrt(a[i])!=static_cast<int>(sqrt(a[i])) && a[i]>max){
            max = a[i];
        }
    }

    cout<<max;
}

全部评论

相关推荐

评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务