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.

3 tháng 8 2023

program UocChia;

var

     n, i: integer;

begin

     write('Nhap gia tri cua n: ');

     readln(n);

     writeln('Cac so co uoc la 3 tu 1 den ', n, ' la:');

     for i := 1 to n do

     begin

          if i mod 3 = 0 then

               write(i, ' ');

     end;

     readln;

end.

15 tháng 4 2022

Program HOC24;

var i,j,n,d: integer;

begin

write('Nhap N: '); readln(n);

d:=0;

for i:=1 to n do

for j:=1 to i do if i mod j=0 then d:=d+1;

write('Ket qua : ',d);

readln

end.

c1: 

#include <bits/stdc++.h>

using namespace std;

long long i,n,s;

int main()

{

cin>>n;

s=1;

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

cout<<s;

return 0;

}

Câu 2: 

#include <bits/stdc++.h>

using namespace std;

long long i,n,s;

int main()

{

cin>>n;

s=1;

for (i=1; i<=n; i++) if (i%2==0) s=s*i;

cout<<s;

return 0;

}

20 tháng 3 2023

program SoHoanHao;

uses crt;

var

     i, j, n, s: integer;

begin

     clrscr;

     write('Nhap n: ');

     readln(n);

     for i := 1 to n do

     begin

          s := 0;

          for j := 1 to i - 1 do

          begin

               if i mod j = 0 then

                    s := s + j;

               end;

               if s = i then

                    writeln(i);

     end;

     readln;

end.

8 tháng 5 2022

Program bt;

Uses crt;

Var i, n: Integer;

begin

clrscr;

Write('Nhap n='); Read(n);

For i:=1 to n do if n mod 2=0 write('cac so tu 1 den n la',i,');

Readln;

End.

#include <bits/stdc++.h>

using namespace std;

long long i,n;

int main()

{

cin>>n;

for (i=1; i<=n; i++) if (i%3==0) cout<<i<<" ";

return 0;

}

10 tháng 11 2022

dùng lệnh for thì quá thời gian phải làm sao ?

for i:=1 to n do 

  if n mod i=0 then write(i:4);

Chương trình đầy đủ:

uses crt;

var n,i:integer;

begin

clrscr;

write('Nhap n='); readln(n);

for i:=1 to n do 

  if n mod i=0 then write(i:4);

readln;

end.