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.

#include <bits/stdc++.h>

using namespace std;

long long n,i;

bool kt;

int main()

{

freopen("checknto.inp","r",stdin);

freopen("checknto.out","w",stdout);

cin>>n;

kt=true;

for (i=2; i*i<=n; i++)

if (n%i==0) kt=false;

if (kt==true && n>1) cout<<"YES";

else cout<<"NO";

return 0;

}

const fi='songuyen.txt';

fo='kluan.txt';

var f1,f2:text;

n:integer;

begin

assign(f1,fi); reset(f1);

assign(f2,fo); rewrite(f2);

readln(f1,n);

if n mod 2=0 then writeln(f2,'La so chan')

else writeln(f2,'La so le');

close(f1);

close(f2);

end.

#include <bits/stdc++.h>

using namespace std;

long long a[1000],i,n,j;

bool kt;

int main()

{

freopen("nguyento.inp","r",stdin);

freopen("nguyento.out","w",stdout);

cin>>n;

for (i=1; i<=n; i++) cin>>a[i];

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

if (a[i]>1) 

{

kt=true;

for (j=2; j*j<=a[i]; j++)

if (a[i]%j==0) kt=false;

if (kt==true) cout<<a[i]<<" ";

}

return 0;

}

const fi='input.txt';

fo='output.txt';

var f1,f2:text;

n:integer;

begin

assign(f1,fi); reset(f1);

assign(f2,fo); rewrite(f2);

readln(f1,n);

if n<0 then writeln(f2,n,' la so am')

else if n=0 then writeln(f2,n,' khong la so am cung khong la so duong')

else writeln(f2,n,' la so duong');

close(f1);

close(f2);

end.

#include <bits/stdc++.h>

using namespace std;

long long n,i,x;

//chuongtrinhcon

bool ktnt(long long x)

{

if (x<2) return false;

for (int i=2; i*i<=x; i++)

if (x%i==0) return(false);

return true;

}

//chuongtrinhchinh

int main()

{

freopen("dl.dat","r",stdin);

freopen("kq.dat","w",stdout);

cin>>n;

dem=0;

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

{

cin>>x;

if (ktnt(x)) dem++;

}

cout<<dem;

return 0;

}

5 tháng 4 2021

ai giup e voi dc k ah:( đang thi ạ

 

5 tháng 4 2021

alo mng ơi=(((

 

14 tháng 4 2023

# Mở tệp IN.INP để đọc thông tin
with open('IN.INP', 'r') as file_input:
    # Đọc hai số nguyên M và N từ tệp IN.INP
    M, N = map(int, file_input.readline().split())

# Mở tệp OUT để ghi thông tin
with open('OUT.OUT', 'w') as file_output:
    # Lặp qua tất cả các số nguyên trong phạm vi từ M đến N
    for num in range(M, N+1):
        # Kiểm tra xem số đó có phải là số chẵn không
        if num % 2 == 0:
            # Nếu là số chẵn, ghi số đó vào tệp OUT.OUT
            file_output.write(str(num) + '\n')