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.

26 tháng 10 2021

#include <bits/stdc++.h>

using namespace std;

int gt(int n)

{

if(n==1)

return 1;

return n*gt(n-1);

}

int main()

{

int n;

cin>>n;

cout<<"Giai thua"<<n<<"la: "<<gt(n);

return 0;

}

9 tháng 2 2022

Tham khảo:

* Lặp tiến :

uses crt;

var i, n, P : longint;

begin

clrscr;

P := 1;

write('nhap so n : '); readln(n);

for i := 1 to n do P := P * i;

writeln(n,'! = ', P);

readln

end.

* Lặp lùi :

uses crt;

var i, n, P : longint;

begin

clrscr;

P := 1;

write('nhap so n : '); readln(n);

for i := n downto 1 do P := P * i;

writeln(n,'! = ', P);

readln

end.

#include <bits/stdc++.h>

using namespace std;

long long p,i,n;

int main()

{

cin>>n;

p=1;

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

p=p*i;

cout<<p;

return 0;

}

21 tháng 10 2021

#include <bits/stdc++.h>

using namespace std;

long long x,i,n,t,a;

int main()

{

cin>>n>>x;

t=0;

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

{

cout<<a;

if (a==x) t=t+a;

}

cout<<t;

return 0;

}

7 tháng 12 2021

#include <iostream>

using namespace std;
int n,t;
int main()
{
    cout << "nhap n" << endl;
    cin>>n;
    t=0;
    while (n!=0)
    {
        t=t+n%10;
        n=n/10;
    }
    cout<<"tong n= "<<t;
    return 0;
}

#include <bits/stdc++.h>

using namespace std;

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

int main()

{

cin>>n;

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

t=0;

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

if (a[i]%2==0 && i%2==1) t+=a[i];

cout<<t;

return 0;

}

a: #include <bits/stdc++.h>

using namespace std;

long long n,i,x,dem;

int main()

{

cin>>n;

dem=0;

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

{

cin>>x;

if (x%2!=0) dem++;

}

cout<<dem;

return 0;

}

21 tháng 10 2021

#include <bits/stdc++.h>

using namespace std;

long long x,i,n,t,a;

int main()

{

cin>>n>>x;

t=0;

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

{

cout<<a;

if (a<x) t=t+a;

}

cout<<t;

return 0;

}