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.

21 tháng 6 2023

```cpp
#include <iostream>

using namespace std;

int main() {
int n;
cin >> n;

for (int a = 0; a &lt;= n; a++) { int b = n - a; if (b &gt;= 0 &amp;&amp; b &lt;= INT_MAX) { cout &lt;&lt; a &lt;&lt; &quot; &quot; &lt;&lt; b &lt;&lt; endl; } } return 0;

}
```   

22 tháng 6 2023

#include <iostream>

int main() {
    int n;
    std::cout << "Nhap so tu nhien n (0 <= n <= 100): ";
    std::cin >> n;

    int a, b;

    // Chia n thành hai phần bằng nhau
    a = n / 2;
    b = n - a;

    std::cout << "Hai so nguyen a va b thoa man a + b = " << n << " la: " << a << " " << b << std::endl;

    return 0;
}

19 tháng 11 2021

A

19 tháng 11 2021

A

#include <bits/stdc++.h>

using namespace std;

int n,kt,t;

int main()

{

cin>>n;

int t=0;

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

if (i%2==1) cout<<i<<" ";

cout<<endl;

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

{

kt=0;

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

if (i%j==0) kt=1;

if (kt==0) cout<<i<<" ";

}

return 0;

}

Mình sẽ tạm hiểu đề này là viết chương trình in ra các số nguyên tố lớn hơn hoặc bằng n nha

#include <bits/stdc++.h>

using namespace std;

int n,m,i;

//chuongtrinhcon

bool ktnt(int n)

if (n<2) return false; 

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

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

return true;

}

int main()

{

cin>>n;

cout<<"Cac so nguyen to nho hon bang n thoa man yeu cau la"<<endl;

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

if (ktnt(i)) cout<<i<<" ";

}

18 tháng 4 2023

program MultiplesOfN;
var
  n, i: integer;
begin
  repeat
    write('Nhap vao so nguyen duong n (0<n<100): ');
    readln(n);
  until (n > 0) and (n < 100);

  writeln('Cac boi so cua ', n, ' co 4 chu so la:');

  for i := 1000 to 9999 do
  begin
    if (i mod n = 0) then
    begin
      writeln(i);
    end;
  end;

  readln;
end.

18 tháng 4 2023

em cảm ơn nhé ạ

1 tháng 9 2021

program bai_1;
uses crt;
var i,n,j,d,dem:word;
begin
  clrscr;
  repeat
    write('nhap n:');readln(n);
    if (n<=0)or(n>=10000)then writeln('so ban nhap khong hop le, ban hay nhap lai:');
  until (n>0)and(n<10000);
  writeln('cac uoc so la so tu nhien cua ',n,' la:');
  for i:=1 to n do
  if n mod i=0 then write(i,'    ');
  writeln;
  dem:=0;
  for i:=2 to n do
  begin
    d:=0;
    for j:=2 to i div 2 do
    if i mod j=0 then inc(d);
    if (d=0)and(n mod i=0)then inc(dem);
  end;
  if dem>0 then writeln('cac uoc so la so nguyen to cua ',n,' la:');
  begin
    d:=0;
    for j:=2 to i div 2 do
    if i mod j=0 then inc(d);
    if (d=0)and(n mod i=0)then write(i,'    ');
  end;
  if dem=0 then write(0);
  readln;
end.