Bó lại cho tròn

Ba mươi sáu con

Một trăm chân chẵn."

Viết chương trình tính...">

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.

20 tháng 6 2023

```cpp
#include <iostream>
using namespace std;

int main() {
int n = 36; // tổng số con
int m = 100; // tổng số chân

int g = (2*n - m/2)/3; int c = (4*n - 2*m)/6; if (g + c == n &amp;&amp; 2*g + 4*c == m &amp;&amp; m % 2 == 0) { cout &lt;&lt; &quot;So con ga: &quot; &lt;&lt; g &lt;&lt; endl; cout &lt;&lt; &quot;So con cho: &quot; &lt;&lt; c &lt;&lt; endl; } else { cout &lt;&lt; &quot;Khong co dap an&quot; &lt;&lt; endl; } return 0;

}
```

Kết quả khi chạy chương trình sẽ là:
```
So con ga: 22
So con cho: 14
```

20 tháng 6 2023

```
So con ga: 22
So con cho: 14
```

nó là này

uses crt;
var i:integer;
begin
clrscr;
for i:=9 to 25 do
if (i*2+(36-i)*4)=100 then writeln('so ga la: ',i);
writeln('so cho la: ' ,36-i);
readln;
end.

12 tháng 3 2020
https://i.imgur.com/Kd3jus0.png
11 tháng 2 2017

banhquabanhleuleu

lười viết

15 tháng 1 2017

program gacho;
uses crt;
var a:integer; {1 biến là đủ)
begin
clrscr;
for a:=1 to 36 do {tốt nhất là cứ xét a từ 1 đến 36 cho tổng quát)
begin
if ((4*a+2*(36-a))=100)then {rõ ràng a+b=36 rồi đâu cần xét nữa)
begin
writeln ('so cho la', a);
writeln ('so ga la', 36-a);
end;
end;
readln;
end.

16 tháng 1 2017

cảm ơn bạn nhiều nha

28 tháng 2 2021

câu 1:

uses crt;

var p,i:integer;

begin

clrscr;

p:=1;i:=1;while i<=5 do

begin

p:=p*i;i:=i+1;

end;

write(p);

readln;

end. 

bai 2:

uses crt;var p,i:integer;begin    clrscr;    p:=1; i:=0;    while i <=10 do    begin

i:=i+1;        if (i mod 2<>0) then p:=p*i;    end;    write(p);    readln;end. bai 3:

uses crt;var n,i,p:integer;begin     clrscr;     write('nhap n: ');     readln(n);     i:=1;     p:=1;     while i<=n do     begin       if i mod 2=0 then p:=p*i;       i:=i+1;     end;     write(p);     readln;end.     

 

28 tháng 2 2021

bạn xuống đây nếu không hiểu

 

undefinedundefined

23 tháng 2 2023

Bài 1

Var s,i:integer;

tb:real;

Begin

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

i:=1;

s:=0;

While i<=n do

Begin

s:=s+i;

i:=i+1;

End;

tb:=s/n;

Writeln('Tong la ',s);

Write('Trung binh la ',tb:10:2);

Readln;

End.

23 tháng 2 2023

Bài 2

Var i,n,souoc:integer;

Begin

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

i:=1;

While i <= n do

Begin

i:=i + 1;

If n mod i = 0 then souoc:=souoc + 1;

End;

If souoc = 1 then write(n,' la so nguyen to')

Else write(n,' khong la so nguyen to');

Readln;

End.

18 tháng 2 2023

var n, sum : integer;

begin

     write('Nhap n: ');

     readln(n);

     sum := 0;

     while n > 0 do

     begin

          sum := sum + n;

          n := n - 1;

     end;

     writeln('Tong la: ', sum);

end.

  
3 tháng 3 2020
https://i.imgur.com/coxdhSg.png