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.

Câu 1: 

#include <bits/stdc++.h>

using namespace std;

long long n;

int main()

{

cin>>n;

int t=0;

while (n>0)

{

int x=n%10;

t=t+x;

n=n/10;

}

cout<<t;

return 0;

}

18 tháng 10 2021

#include <bits/stdc++.h>
using namespace std;
int main() {
double x, y;
cin >> x;
if(x<0) {cout << "Khong co y thoa man bieu thuc tren";}
if(x>=0)
{y=cbrt(x)+sqrt(x)+1;
cout << y << endl;}
return 0;
}

Chúc bn học tốt!

Bài 2: 

#include <bits/stdc++.h>;

using namespace std;

int main();

{

long m,n;

cout<<"Nhap m="; cin>>m;

cout<<"Nhap n="; cin>>n;

cout<<m*n-2;

return 0;

}

#include <bits/stdc++.h>

using namespace std;

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

int main()

{

cin>>n;

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

t=0;

dem=0;

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

if ((a[i]>0) and (i%2==1))

{

t+=a[i];

dem++;

}

cout<<fixed<<setprecision(2)<<(t*1.0)/(dem*1.0);

return 0;

}

1 tháng 10 2021

Program HOC24;

var i,n,x: integer

fx,f: longint;

begin

write('Nhap x: '); readln(x);

fx:=1;

for i:=1 to 10 do

begin

fx:=fx*x;

if i=5 then f:=fx;

end;

fx:=fx+f+1;

write('f(',x,')=',fx);

readln

end.

18 tháng 12 2020

uses crt;

var a,b,c,d,tl,tc:integer;

begin

clrscr;

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

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

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

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

tc:=0;

tl:=0;

if a mod 2=0 then tc:=tc+a

else tl:=tl+a;

if b mod 2=0 then tc:=tc+b

else tl:=tl+b;

if c mod 2=0 then tc:=tc+c

else tl:=tl+c;

if d mod 2=0 then tc:=tc+d

else tl:=tl+d;

writeln('Tong cac so chan la: ',tc);

writeln('Tong cac so le la: ',tl);

readln;

end.

31 tháng 10 2021

#include <bits/stdc++.h>

using namespace std;

long long a,b;

int main()

{

cin>>a>>b;

cout<<max(a,b);

return 0;

}