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.

28 tháng 6 2020

Thanks

Dạng thủ tục:

procedure duongcao(var x,y,z:real);
var p,s,dc:real;
begin
p:=(x+y+z)/2;
s:=sqrt(p*(p-x)*(p-y)*(p-z));
dc:=s/(x/2);
writeln('Do dai cua duong cao la: ',dc:4:2);
end;

Dạng hàm:

function duongcao(var x,y,z:real):real;
var p,s:real;
begin
p:=(x+y+z)/2;
s:=sqrt(p*(p-x)*(p-y)*(p-z));
duongcao:=s/(x/2);
end;

31 tháng 5 2017

Bạn chạy tay CT ra nhé.

L=0 S=0, vì L< 5 => L+2=2 S=0+1=1

L=2 S=1, vì L< 5 => L+2=4 S=1+1=2

L=4 S=2, vì L< 5 => L+2=6 S=2+1=3

L=6, vì L=6>5 nên thoát vòng lặp ra và in S (S=3)

31 tháng 5 2017

Bạn sai rồi. Kết quả là 6. Mình muốn biết cách tính vòng lặp để bài nào cũng áp dụng đc thôi

#include <bits/stdc++.h>
using namespace std;
long long n;
int main()
{
    freopen("fibonacci.inp","r",stdin);
    freopen("fibonacci.out","w",stdout);
    cin>>n;
    double c5=sqrt(5);
    cout<<fixed<<setprecision(0)<<((1/c5)*(pow((1+c5)/2,n)-pow((1-c5)/2,n)));
    return 0;
}

 

25 tháng 12 2021

#include <bits/stdc++.h>

using namespace std;

long long n,i,t;

int main()

{

cin>>n;

if ((n>10) and (n<70))

{

t=0;

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

if (i%2==0) t=t+i;

cout<<t;

}

else cout<<"Nhap lai";

return 0;

}

#include <bits/stdc++.h>

using namespace std;

int main()

{

double a;

cin>>a;

cout<<a*4<<endl;

cout<<a*a<<endl;

cout<<a*sqrt(2)<<endl;

return 0;

}

22 tháng 7 2021

uses crt;

Var i,n,dem:integer;

     a: array[1..1000] of integer;

Begin

clrscr;

Write('Nhap do dai cua day: ');readln(n);

dem:=0;

for i:= 1 to n do

  Begin

  write('So thu ',i,' = ');

  readln(a[i]);

  if a[i] mod 2 = 0 then inc(dem);

  end;

Writeln('Day so co ',dem,' so chan');

readln;

End.

18 tháng 10 2021

Câu 3:

#include <bits/stdc++.h>

using namepsace std;

double a,b,c,p,s;

int main()

{

cin>>a>>b>>c;

p=(a+b+c)/2;

s=sqrt(p*(p-a)*(p-b)*(p-c));

cout<<fixed<<setprecision(2)<<s;

return 0;

}

18 tháng 10 2021

Câu 3: 

#include <bits/stdc++.h>

using namepsace std;

double a,b,c,p,s;

int main()

{

cin>>a>>b>>c;

p=(a+b+c)/2;

s=sqrt(p*(p-a)*(p-b)*(p-c));

cout<<fixed<<setprecision(2)<<s;

return 0;

}