K
Khách

Hãy nhập câu hỏi của bạn vào đây, nếu là tài khoản VIP, bạn sẽ được ưu tiên trả lời.

14 tháng 11 2021

#include <bits/stdc++.h>

using namespace std;

int n,kt;

int main()

{

cin>>n;

kt=0;

if (n%400==0) kt=1;

if ((n%4==0) and (n%100!=0)) kt=1;

if (kt==0) cout<<365;

else cout<<366;

return 0;

}

10 tháng 12 2021

#include <bits/stdc++.h>

using namespace std;

long long n;

int main()

{

cin>>n;

if (n%400==0) cout<<"YES";

else if ((n%100!=0) and (n%4==0)) cout<<"YES";

else cout<<"NO";

return 0;

}

3 tháng 3 2022

lớp 11???

#include <bits/stdc++.h>

using namespace std;

long long x,i,n,dem;

int main()

{

cin>>n;

dem=0;

for (i=1; i<=n; i++)

{

cin>>x;

if ((x%2==0) or (x%5==0)) dem++;

}

cout<<dem;

return 0;

}

21 tháng 10 2021

#include <bits/stdc++.h>
using namespace std;
int main() {
int N=100, dem=0;
for(int i=1; i<=N; i++)
    {if(i%3==0) dem+=1;}
cout << dem << endl;
return 0;
}

Chúc bn học tốt!

22 tháng 12 2022

uses crt;

var i,t:integer;

begin

clrscr;

t:=0;

for i:=1 to 100 do

if i mod 5<>0 then t:=t+i;

writeln(t);

readln;

end.