问题标题: 酷町堂:2061

0
0
已解决
张马润泽
张马润泽
初级光能
初级光能
#include<iostream>
#include<cstdio>
using namespace std;
int main()
{
    double x;
    cin>>x;
    if(x%4==0||x%400==0&&x%100!==0)
    cout<<"是闰年";
    else
    cout<<"是平年"; 
    return 0;
}

怎嘛错了


0
已采纳
张瑀涵
张瑀涵
高级光能
高级光能

x设为int,把第8行的x%100!==0改成x%100!=0

0
我要回答