已解决 胡然 修练者 #include<iostream> using namespace std; int main(){ int t; cin>>t; if(t%4==0){ if(t%100>=1) cout<<"yes"; } if(t%4>=1){ if(t%100>=0) cout<<"no"; } return 0; }
艾言 修练者 1.你的int和cin不要一起写 2.你的t判断是不是闰年是t%4==0&&t%100!=0||t%400==0,是这样判断的 3.你可以以if-else来写这道题 你如果还有疑问可以上课前问一问老师