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.

program uptowin; uses crt; const dong=5; tocdo=1000; var memory:array[1..dong]of word; vt:shortint;thua,Qexit:boolean;x,y,z:word;{x,y,z la bien nhap} dem,key:byte;c:char; {_} function wall(a:word;b:byte):boolean; begin b:=16-b; if odd(a shr (b)) then wall:=true else wall:=false; end; {_} procedure vekhung(x1,y1,x2,y2:word); var z,a,b:word; begin if (x1<>x2) and (y1<>y2) then begin a:=wherex; b:=wherey; if x1>x2 then begin z:=x1; x1:=x2; x2:=z; end; if y1>y2 then begin z:=y1; y1:=y2; y2:=z; end; ...
Đọc tiếp

program uptowin;
uses crt;
const dong=5; tocdo=1000;
var
memory:array[1..dong]of word;
vt:shortint;thua,Qexit:boolean;x,y,z:word;{x,y,z la bien nhap}
dem,key:byte;c:char;
{_}
function wall(a:word;b:byte):boolean;
begin
b:=16-b;
if odd(a shr (b)) then wall:=true
else wall:=false;
end;
{_}
procedure vekhung(x1,y1,x2,y2:word);
var z,a,b:word;
begin
if (x1<>x2) and (y1<>y2) then
begin
a:=wherex; b:=wherey;
if x1>x2 then
begin z:=x1; x1:=x2; x2:=z; end;
if y1>y2 then
begin z:=y1; y1:=y2; y2:=z; end;
gotoxy(x1,y1); write(#201);
if x2-x1>1 then for z:=1 to x2-x1-1 do write(#205);
gotoxy(x2,y1); write(#187);
gotoxy(x1,y2); write(#200);
if x2-x1>1 then for z:=1 to x2-x1-1 do write(#205);
gotoxy(x2,y2); write(#188);
if y2-y1>1 then for z:=1 to y2-y1-1 do begin
gotoxy(x1,z+y1); write(#186); end;
if y2-y1>1 then for z:=1 to y2-y1-1 do begin
gotoxy(x2,z+y1); write(#186); end;
end;
gotoxy(a,b);
end;
function rand:word;
var a:word;b,c:byte;
begin
b:=random(14)+1;
for c:=1 to b do
a:=a+ 1 shl (c-1);
a:=a shl random(14);
rand:=not a;
if (a=0) or (not a=0) then a:=rand;
end;
{_}
procedure run(x:boolean);
var e:byte;
{\}
procedure traiphai(var a:word);
var d:boolean;
begin
if odd(dem+e) then
begin
if a>maxint then
begin d:=true;
a:=a-maxint-1; end
else d:=false;
a:=a shl 1;
if d then a:=a+1;
if (wall(memory[1],vt)) then
vt:=vt-1;
end
else
begin
if odd(a) then
begin a:=a-1;
d:=true; end
else d:=false;
a:=a shr 1;
if d then a:=a+maxint+1;
if (wall(memory[1],vt)) then
vt:=vt+1;
end;
end;
{/}
begin
for e:=1 to dong do
if x and odd(e) then
traiphai(memory[e])
else if not x and not odd(e)then
traiphai(memory[e]);
end;
{_}
procedure draw;
var x,y:byte;
{\}
procedure help;
begin
textcolor(white);
vekhung(51,5,70,22);
vekhung(8,5,25,22);
textcolor(yellow);
gotoxy(54,8);write(' W : Up');
gotoxy(54,11);write(' A : Left');
gotoxy(54,14);write(' D : Right');
gotoxy(54,17);write(' Space : Pause');
gotoxy(54,20);write(' Esc : Exit');
vekhung(54,7,58,9);
vekhung(54,10,58,12);
vekhung(54,13,58,15);
vekhung(54,16,62,18);
vekhung(54,19,60,21);
gotoxy(9,6); write('Go up each floor');
gotoxy(9,7); write(', you will add 1');
gotoxy(9,8); write('bonus. But must');
gotoxy(9,9); write('not passing wall');
gotoxy(11,10); write('Example:');
gotoxy(11,12); write('Can''t go up:');
gotoxy(12,13);write(#219#32#219#219#32#219);
gotoxy(12,14);write(#205#205#205#205#205#205);
gotoxy(12,15);write(' ',#15,' ');
gotoxy(12,17);write('Can go up:');
gotoxy(12,18);write(#219#32#219#219#32#219);
gotoxy(12,19);write(#205#205#205#205#205#205);
gotoxy(12,20);write(' ',#15,' ');
end;
{/}
begin
clrscr;
textcolor(white);
vekhung(20,1,60,3);
gotoxy(30,2); write('*** GO UP TO WIN! ***');
vekhung(28,5,47,22);
textcolor(yellow);
gotoxy(30,7);
writeln(#205#205#205#205#205#205#205#205,
#205#205#205#205#205#205#205#205);
for x:=dong downto 1 do
begin
gotoxy(30,8+(dong-x)*2);
for y:=1 to 16 do
if memory[x] shl (y-1)>maxint-1 then write(#219)
else write(' ');
writeln;
gotoxy(30,8+(dong-x)*2+1);
writeln(#205#205#205,
#205#205#205#205#205#205#205,
#205#205#205#205#205#205);
end;
help;
gotoxy(30,20); write('Lines:',dem,' Key:',key,'/50');
gotoxy(vt+29,16); write(#15);
end;
procedure pause;
begin
clrscr;
vekhung(15,10,65,15);
gotoxy(18,13);
write(' Paused! Press any key to continue...');
readkey;
end;
procedure thuchon;
begin{+3}
c:=readkey;
case upcase(c) of{+4}
'D':if not wall(memory[1],vt+1) then vt:=vt+1;
'A':if not wall(memory[1],vt-1) then vt:=vt-1;
'W':if not wall(memory[2],vt) then begin{+5}
dem:=dem+1;
for z:= 1 to dong-1 do
memory[z]:=memory[z+1];
memory[dong]:=rand;
end;{-5}
' ': pause;
#27:begin
qexit:=true;
thua:=true;
end;
end;{-4}
if upcase(c) in['D','A','W'] then
begin key:=key+1; draw; end;
if key=50 then thua:=true;
end;{-3}

{____Main Program____}
begin
textbackground(blue); textcolor(yellow); clrscr;
randomize;
vekhung(15,10,65,15);
gotoxy(18,13);
write('Press any key to continue...');
repeat x:=random(1); until keypressed;
window(1,1,80,25);
repeat
key:=0;thua:=false;Qexit:=false;
vt:=8;x:=0;clrscr;
for x:=2 to dong do
memory[x]:=rand;
repeat{+0}
draw;
for x:=0 to 1000 do
begin{+1}
if x=0 then
run(true);
if x=500 then
run(false);
for y:=0 to tocdo do
begin{+2}
if keypressed then
thuchon;
if not (vt in[1..16]) then
begin thua:=true; break; end;
end;{-2}
end;{-1}
until thua;
gotoxy(1,4);
for x:= 1 to 80*21 do
begin write(' ');
for y:=1 to 1000 do
for z:=1 to 600 do; end;
textcolor(white);
vekhung(15,11,65,15);
gotoxy(30,11); write(' Infomation ');
textcolor(yellow);
gotoxy(19,12); write('Score: ',dem);
if not qexit then
write(' You are lost!');
gotoxy(19,13); write('Press Enter or Esc to quit!');
gotoxy(19,14); write('Press Space to replay!');
repeat c:=readkey; until c in [#27,#13,#32];
until c in [#27,#13];
end.

Trên là một chương trình game mình soạn trên Free Pascal nhưng không được. Lỗi thì không có rồi. Khi ấn Ctrl+F9 thì có dòng chữ "Press any key to continue", ấn xong thì bị thoát và có dòng chữ mới: "Program.... exited with exitcode = 201".

Ai phát hiện và tìm ra cách sửa lỗi thì báo mình nhé!!!

0
A.Phần trắc nghiệm Khoanh tròn vào câu đúng trong các câu sau : Câu1: Trong các tên sau đây, tên nào là hợp lệ trong ngôn ngữ lập trình Pascal: A. 8b; B. uses; C. bai tap; D. chuongtrinh; Câu2: Trong các chương trình Pascal sau đây , chương trình nào hợp lệ: A.begin end. B. begin Program baitap; writeln ('Chao cac ban'); ...
Đọc tiếp

A.Phần trắc nghiệm

Khoanh tròn vào câu đúng trong các câu sau :

Câu1: Trong các tên sau đây, tên nào là hợp lệ trong ngôn ngữ lập trình Pascal:

A. 8b; B. uses; C. bai tap; D. chuongtrinh;

Câu2: Trong các chương trình Pascal sau đây , chương trình nào hợp lệ:

A.begin end.

B. begin Program baitap; writeln ('Chao cac ban'); end.

C. begin

D. Tất cả đều sai.

Câu3: Ý nghĩa của câu lệnh X:=5 trong Pascal là:

A. Gán giá trị số 5 vào biến nhớ X. B. Cho biết giá trị của X là 5. C. Tăng giá trị của biến X lên 5 đơn vị. D. Tất cả đều đúng.

Câu5: Trong các câu lệnh pascal sau đây, câu nào đúng: A. if x: =3 then a:=b; B. if x = 6; then a:=b ; C. if x > 3 then x:=x+1 ; else x: x+2; D. if x > 3 then x:=x+1 else x:= x+2;

Câu 6: Phạm vi giá trị của kiểu số nguyên trong khoảng nào sau đây: A. -2^15 đến 2^15 - 1 B. 2,9 × 10^38 đến 1,7 × 10^38 C. -32768 đến 32768 D. Tất cả đều sai.

Câu7: Nếu cho X=8, giá trị của X là bao nhiêu sau câu lệnh: If (X mod 2)=0 then X:=X+2; A.8 B.9 C.10 D.11

Câu8:Nếu cho X=10, giá trị của X là bao nhiêu sau câu lệnh:If (X <=9) then X:X+1; A.8 B.10 C.9 D.11

Câu9: Trong Pascal,khai báo nào sau đây là đúng? A. Var tb: real; B. Var 4hs: integer C.Const x : real; D. Var R=30;

0
Chào :) Chúng ta sẽ đến với Python :) Khỏi giới thiệu sơ lược .Lên GG mà tra .Wiki nó ghi một đống Ok . Dành cho mấy bạn ước mơ làm developer cho công ty nước ngoài như mình (: Nghe viển vông ghê :) Thì phải học 2 ngôn ngữ đó là Python và Javasprcrip (Hay ghi sai chính tả chỗ Java :v Đừng phốt :) Today tui sẽ dạy cho mấy bợn học Python :) (Tui cũng mới học được vài tháng thôi .Mong các bro chỉ...
Đọc tiếp

Chào :)

Chúng ta sẽ đến với Python :)

Khỏi giới thiệu sơ lược .Lên GG mà tra .Wiki nó ghi một đống

Ok . Dành cho mấy bạn ước mơ làm developer cho công ty nước ngoài như mình (: Nghe viển vông ghê :)

Thì phải học 2 ngôn ngữ đó là Python và Javasprcrip (Hay ghi sai chính tả chỗ Java :v Đừng phốt :)

Today tui sẽ dạy cho mấy bợn học Python :) (Tui cũng mới học được vài tháng thôi .Mong các bro chỉ giáo )

Bài học 1 : Cài đặt môi trường Pascal

Khỏi lằng ngoằng ,vô vấn đề chính (Phải Có trình IDE nào đó nha )

Bước 1 : Welcome to Python.org bấm download

Bước 2 :Bấm vô file vừa tải về và Tick vào ô Add Python 3.6 to PATH và chọn Install Now

Bước 3 : Chờ đê :)

Bước 4: Ấn combo Win+Run

Thấy hộp thoại Run gõ CMD ,bấm enter

Áp tơ đát : Sau khi có cửa sổ đen trắng :( Ông sáng lập làm màu xấu :V

python xong Enter

Nếu nó như thế này (Hình ở dưới là ok)

Lợi ích khi học em này :

+ Ngắn gọn,súc tích.Ngắn nhất nhì trong tất cả ngôn ngữ lập trình

+ Dễ đọc,học,hiểu .Thích hợp cho beginner

+ Dễ kiếm lương cao ≈30 - 40 tr (Vì cả thế giới người ta đa số dùng cái này Mấy ông lớn công nghệ cũng dùng luôn)

+ Học kèm Javaspirct là tuỵet vời :) Là xong 2 ngôn ngữ lập trình phổ biến nhất thế giới nha !

≈Thân ≈

Học hỏi ,không ngại khó ,thắc mắc ghi ở dưới

@Phan Đỗ Thành Nhân@~~ NK Đại Tỷ ~~No choice teenKhánh HuyềnNguyễn Lê Phước ThịnhNguyễn Trúc GiangHùng NguyễnTRẦN MINH HOÀNGSara Trang@Justin Le NguyenTrần Dũng@Nguyễn Văn Đạt

7
21 tháng 4 2020

dính nhưng mà lười vào xem!!

Ey, sao trong câu hỏi m không tag tên tao? :((( ( à mà dính á :vvv)

26 tháng 4 2020

Câu 3.

Chắc đề bậc 2 thôi. Nhưng sửa lên bậc 5 thì dùng ntn khi không có công thức để áp dụng?

26 tháng 4 2020

Câu đó không có ví dụ nha bạn :) Làm thế nào thì làm

Hello :) Tui đây Hơm nay sẽ có 1 thứ quà đặc biệt :) (Tick GP để nhận quà :) Đùa đêý :) Thích donate cũng đc mà khônng cũng chả sao :( 10 GB VPN miễn phí Không nhìn nhầm đâu :) 10 GB Vậy thì như thế nào hãy cùng Kido tìm hiểu trong Video dưới đây Nhận 60GB Windscribe VPN miễn phí, không còn lo mạng chậm Đầu tiên, hãy đăng kí tài khoản của Windscribe VPN thông qua đường link bên dưới (nếu đã...
Đọc tiếp

Hello :)

Tui đây

Hơm nay sẽ có 1 thứ quà đặc biệt :)

(Tick GP để nhận quà :) Đùa đêý :) Thích donate cũng đc mà khônng cũng chả sao :(

10 GB VPN miễn phí

Không nhìn nhầm đâu :) 10 GB

Vậy thì như thế nào hãy cùng Kido tìm hiểu trong Video dưới đây

Nhận 60GB Windscribe VPN miễn phí, không còn lo mạng chậm

Đầu tiên, hãy đăng kí tài khoản của Windscribe VPN thông qua đường link bên dưới (nếu đã có, bỏ qua bước này):

windscribe.com

Nhập tên tài khoản, mật khẩu và Email muốn đăng kí. Tuy nhiên lưu ý, chúng ta sẽ phải nhận link kích hoạt thông qua Email, nên buộc phải sử dụng liên hệ Kido để có mail ảo .Kido sẽ gửi link cho :)

Tiếp đến, mở tin nhắn của Kido copy và dán link được trả về

Sau đó, tải Addon trên Trình duyệt hoặc file cài đặt trực tiếp trên máy tính. Để tiện nhất, chúng ta nên sử dụng Addon để có thể thao tác nhanh và không tốn nhiều tài nguyên. Sau khi tải, đăng nhặp bằng mật khẩu và tên đăng nhập như đã đăng kí lúc đầu

Nên chọn sever Los Angeles - Dogg

(Tên sever là Dog nha ,Dog đấy :)

Hết

≈Thân≈

6
24 tháng 4 2020

Hà Đặng Công Chínhô tui ngu thật ông ạ tui quên save hèn j chạy nó ko hiển thị cái j hết óc chó thật ông ạ thoy ra rồi cảm ơn ông

24 tháng 4 2020

Hàng 3 bên CMD có 2 dấu chấm

<!DOCTYPE html> <html lang="vi" xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta content="width=device-width, initial-scale=1.0, maximum-scale=2.0, user-scalable=yes" name="viewport"> <meta name="_mg-domain-verification" content="a82f37f3544f4ef9fe09af3c46ca97a2"...
Đọc tiếp
<!DOCTYPE html>
<html lang="vi" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta content="width=device-width, initial-scale=1.0, maximum-scale=2.0, user-scalable=yes" name="viewport">
<meta name="_mg-domain-verification" content="a82f37f3544f4ef9fe09af3c46ca97a2" />
<style type='text/css'>
body{
margin: 0px;
}
</style>
<link rel="stylesheet" href="/media/templates/hoc24/bootstrap/css/bootstrap.min.css?v=1">
<link rel="stylesheet" href="/media/templates/hoc24/css/font-awesome.min.css">
<title>Câu hỏi của Anh trần - Vật lý lớp 7 | Học trực tuyến</title>
<meta name="keywords" content = "Cộng đồng học tập, hỏi đáp, luyện thi trung học phổ thông quốc gia, vật lý, hóa học, sinh học, toán, lý, hóa, sinh, lịch sử, địa lý, ngữ văn, tiếng anh" >
<meta name="description" content = "tính khoảng cách ngắn nhất từ người nói đến bức tường để nghe được tiếng vang biết vận tốc trong không khí là 340m/s?ai..." >
<meta name="author" content="Anh trần" >
<meta property="og:image" content="https://lh6.googleusercontent.com/-x_0CvlyQCbA/AAAAAAAAAAI/AAAAAAAAAB4/Nr_U1V18IYI/photo.jpg?sz=256">
<meta property="og:image:type" content="image/png">
<meta property="og:description" content="tính khoảng cách ngắn nhất từ người nói đến bức tường để nghe được tiếng vang biết vận tốc trong không khí là 340m/s?ai...">
<meta property="og:title" content="Câu hỏi của Anh trần - Vật lý lớp 7">
<meta property="fb:app_id" content="922609287827985">
<meta property="fb:pages" content="1518061451812225">
<meta property="article:publisher" content="https://www.facebook.com/hoc24.vn">
<meta property="article:author" content="https://www.facebook.com/hoc24.vn">
<script type='text/javascript' src="/media/jquery/jquery.js?18.11.13"></script>
<script type='text/javascript' src="/media/jquery/jquery-ui.min.js?25.12.17"></script>
<script type='text/javascript' src="/modules/question/question.js?25.12.17"></script>
<script type='text/javascript' src="/modules/personal/follow/follow.js?25.12.17"></script>
<script type='text/javascript' src="/media/templates/hoc24/bootstrap/js/bootstrap.min.js?25.12.17"></script>
<link rel='stylesheet' type='text/css' href='/modules/question/style.css?2?25.12.17' />
<link rel="stylesheet" href="/media/templates/hoc24/dist/css/hoc24.css?v=14">
<link rel="stylesheet" href="/media/templates/hoc24/dist/css/skins/skin-blue-light.min.css?v=5">
<script type="text/javascript">
//if(location.host != "hoc24.vn") window.location.href = "https://hoc24.vn";
</script>
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<script>
(adsbygoogle = window.adsbygoogle || []).push({
google_ad_client: "ca-pub-2208223212947843",
enable_page_level_ads: true
});
</script>
</head>
<body class="skin-blue-light fixed " data-spy="scroll" data-target="#scrollspy">
<div class="wrapper">
<header class="main-header">
<a href="https://hoc24.vn/" class="logo hidden-xs">
<span class="logo-mini"><b>H</b>24</span>
<span class="logo-lg"><i class = 'fa fa-tree'></i><b> HOC</b>24</span>
</a>
<nav class="navbar navbar-static-top" role="navigation">
<a href="#" class="sidebar-toggle " data-toggle="offcanvas" role="button">
<span class="sr-only">Toggle navigation</span>
</a>
<div class="collapse navbar-collapse pull-left" id="navbar-collapse">
<ul class="nav navbar-nav">
<li class="dropdown">
<a href="" class="dropdown-toggle" data-toggle="dropdown"> <b>MÔN VẬT LÝ</b><span class="caret"></span></a>
<ul class="dropdown-menu" role="menu">
<li><a href="https://hoc24.vn/toan-hoc/">TOÁN</a></li>
<li><a href="https://hoc24.vn/vat-ly/">VẬT LÝ</a></li>
<li><a href="https://hoc24.vn/hoa-hoc/">HÓA HỌC</a></li>
<li><a href="https://hoc24.vn/sinh-hoc/">SINH HỌC</a></li>
<li><a href="https://hoc24.vn/ngu-van/">NGỮ VĂN</a></li>
<li><a href="https://hoc24.vn/tieng-anh/">TIẾNG ANH</a></li>
<li><a href="https://hoc24.vn/tieng-anh-thi-diem/">TIẾNG ANH THÍ ĐIỂM</a></li>
<li><a href="https://hoc24.vn/lich-su/">LỊCH SỬ</a></li>
<li><a href="https://hoc24.vn/dia-ly/">ĐỊA LÝ</a></li>
<li><a href="https://hoc24.vn/tin-hoc/">TIN HỌC</a></li>
<li><a href="https://hoc24.vn/cong-nghe/">CÔNG NGHỆ</a></li>
<li><a href="https://hoc24.vn/giao-duc-cong-dan/">GD CÔNG DÂN</a></li>
</ul>
</li>
</ul>
</div>
<div class="navbar-custom-menu"> <style>
.login-add #menu_login{right:auto;left:15px}.mg-right{margin-right:20px}#login{position:absolute;top:50px;right:-40px;width:300px;background-color:rgba(37,126,177,.85);display:none}#login input{position:relative;width:270px;margin:15px}#login button{margin:10px 0 10px 14px}#login .btn-google{background-color:#dd4b39;color:#fff}#login .btn-facebook{background-color:#3b5998;color:#fff}#login .btn-dangki{background-color:#3c8dbc;color:#fff}#show-login{margin:12px 0 0;position:relative;float:left;color:#fff;font-weight:700}#show-login:hover{color:#ccc;cursor:pointer}
</style>
<script src="/modules/message/message.js?v=3"></script>
<form class="navbar-form navbar-right hidden-xs hidden-sm" >
<div class="form-group">
<input class="form-control" class="span2" type="text" name='username' id='username_login' placeholder="Tài khoản" />
</div>
<div class="form-group">
<input class="form-control" class="span2" type="password" name='password' placeholder="Mật khẩu" />
</div>
<button id='login-submit' type="submit" class="btn btn-success">Đăng nhập</button>
<a class="btn btn-social-icon btn-google" href="https://accounts.google.com/o/oauth2/auth?response_type=code&redirect_uri=http%3A%2F%2Fhoc24.vn%2F%3Fl%3Duser.google&client_id=762466771307-jjgqhg6qe2p9fvcdr1ll3m9td4kcqjrg.apps.googleusercontent.com&scope=https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fuserinfo.profile+https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fuserinfo.email&access_type=offline&approval_prompt=force">
<i class="fa fa-google-plus"></i>
</a>
<!-- Quay lại trang http://localhost/hoc24/?l=user.google sau khi click vào link -->
<a class="btn btn-social-icon btn-facebook" href="https://hoc24.vn/index.php?l=user.facebook">
<i class="fa fa-facebook"></i>
</a>
<a href="https://hoc24.vn/index.php?l=user.register" class="btn btn-primary lg-link mg-right">Đăng ký</a>
<input type="hidden" name="return" value="https://hoc24.vn/hoi-dap/question/144628.html" />
<div class='login-add hidden-tablet hidden-phone'>
<ul id='menu_login' class='dropdown-menu'>
<li><a><label><input type='checkbox' name='remember' value='yes' checked="checked"/> Giữ tôi luôn đăng nhập</label></a></li>
<li><a href='https://hoc24.vn/?l=user.forgot'>Quên mật khẩu</a></li>
<li><a href='https://hoc24.vn/?l=user.register'>Đăng ký tài khoản</a></li>
</ul>
</div>
</form>
<a id="show-login" class="hidden-md hidden-lg" onclick="show_login();">Đăng nhập</a>
<div id="login" class="hidden-md hidden-lg">
<form class="" >
<div class="form-group">
<input class="form-control" class="span2" type="text" name='username' id='username_login' placeholder="Tài khoản" />
</div>
<div class="form-group">
<input class="form-control" class="span2" type="password" name='password' placeholder="Mật khẩu" />
</div>
<button id='login-submit' type="submit" class="btn btn-success">Đăng nhập</button>
<a class="btn btn-social-icon btn-google" href="https://accounts.google.com/o/oauth2/auth?response_type=code&redirect_uri=http%3A%2F%2Fhoc24.vn%2F%3Fl%3Duser.google&client_id=762466771307-jjgqhg6qe2p9fvcdr1ll3m9td4kcqjrg.apps.googleusercontent.com&scope=https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fuserinfo.profile+https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fuserinfo.email&access_type=offline&approval_prompt=force">
<i class="fa fa-google-plus"></i>
</a>
<!-- Quay lại trang http://localhost/hoc24/?l=user.google sau khi click vào link -->
<a class="btn btn-social-icon btn-facebook" href="https://hoc24.vn/index.php?l=user.facebook">
<i class="fa fa-facebook"></i>
</a>
<a href="https://hoc24.vn/index.php?l=user.register" class="btn btn-dangki"> Đăng ký</a>
<input type="hidden" name="return" value="https://hoc24.vn/hoi-dap/question/144628.html" />
<div class='login-add hidden-tablet hidden-phone'>
<ul id='menu_login' class='dropdown-menu'>
<li><a><label><input type='checkbox' name='remember' value='yes' checked="checked"/> Giữ tôi luôn đăng nhập</label></a></li>
<li><a href='https://hoc24.vn/?l=user.forgot'>Quên mật khẩu</a></li>
<li><a href='https://hoc24.vn/?l=user.register'>Đăng ký tài khoản</a></li>
</ul>
</div>
</form>
</div>
<script type='text/javascript'>
Message.init(false);
$("#username_login").focus(function(){$("#menu_login").show()}).blur(function(){return;setTimeout(function(){$("#menu_login").hide()}, 300);});
function show_login() { $("#login").slideToggle(700); }
</script>
</div>
</nav>
<!-- <a href="https://hoc24.vn/" class="logo-sm hidden-sm hidden-md hidden-lg"> <i class = 'fa fa-graduation-cap'></i> </a>-->
</header>
<style>
@media(max-width: 500px) {.Hoc24_Responsive { width: 300px; height: 250px; } }
@media(max-width: 800px) { .Hoc24_Responsive { width: 468px; height: 60px; } }
</style>
<script>
QA.init({
id: "0",
avt: "https://hoc24.vn/images/avt/avt0_60by60.jpg",
url: "https://hoc24.vn/",
name: "Khách",
username: "none",
id_question: "144628",
from: 20,
last: 4});
</script>
<input type="hidden" value="0" id='curr_user'>
<aside class="main-sidebar">
<div class="sidebar" id="scrollspy">
<ul class="sidebar-menu">
<li class = "treeview">
<a href = "https://hoc24.vn/thongtin"><span>Tin tức</span></a>
</li>
<li class="active treeview">
<a href="#">
<span>Chuyên đề</span> <i class="fa fa-angle-left pull-right"></i>
</a>
<ul class="treeview-menu">
<li id = "grade-13" class="">
<a href="">
<span class = "lop-13">
Ôn thi thpt </span>
<i class="fa fa-angle-left pull-right"></i>
</a>
<ul class="treeview-menu">
<li><a href="https://hoc24.vn/hoi-dap/song-anh-sang.3860/?type=thpt"><span>Sóng ánh sáng</span></a></li><li><a href="https://hoc24.vn/hoi-dap/luong-tu-anh-sang.3861/?type=thpt"><span>Lượng tử ánh sáng</span></a></li><li><a href="https://hoc24.vn/hoi-dap/hat-nhan-nguyen-tu.3862/?type=thpt"><span>Hạt nhân nguyên tử</span></a></li><li><a href="https://hoc24.vn/hoi-dap/dao-dong-co-hoc.3540/?type=thpt"><span>Dao động cơ học</span></a></li><li><a href="https://hoc24.vn/hoi-dap/song-co-hoc.3541/?type=thpt"><span>Sóng cơ học</span></a></li><li><a href="https://hoc24.vn/hoi-dap/dien-xoay-chieu.3546/?type=thpt"><span>Điện xoay chiều</span></a></li><li><a href="https://hoc24.vn/hoi-dap/dao-dong-va-song-dien-tu.3547/?type=thpt"><span>Dao động và sóng điện từ</span></a></li> </ul>
</li>
<li id = "grade-12" class="">
<a href="">
<span class = "lop-12">
Lớp 12 </span>
<i class="fa fa-angle-left pull-right"></i>
</a>
<ul class="treeview-menu">
<li><a href="https://hoc24.vn/hoi-dap/dao-dong-co-hoc.4/"><span>Dao động cơ học</span></a></li><li><a href="https://hoc24.vn/hoi-dap/song-co-hoc.19/"><span>Sóng cơ học</span></a></li><li><a href="https://hoc24.vn/hoi-dap/dien-xoay-chieu.52/"><span>Điện xoay chiều</span></a></li><li><a href="https://hoc24.vn/hoi-dap/dao-dong-va-song-dien-tu.51/"><span>Dao động và sóng điện từ</span></a></li><li><a href="https://hoc24.vn/hoi-dap/song-anh-sang.53/"><span>Sóng ánh sáng</span></a></li><li><a href="https://hoc24.vn/hoi-dap/luong-tu-anh-sang.54/"><span>Lượng tử ánh sáng</span></a></li><li><a href="https://hoc24.vn/hoi-dap/hat-nhan-nguyen-tu.55/"><span>Hạt nhân nguyên tử</span></a></li> </ul>
</li>
<li id = "grade-11" class="">
<a href="">
<span class = "lop-11">
Lớp 11 </span>
<i class="fa fa-angle-left pull-right"></i>
</a>
<ul class="treeview-menu">
<li><a href="https://hoc24.vn/hoi-dap/dien-tich-dien-truong.301/"><span>Điện tích, điện trường</span></a></li><li><a href="https://hoc24.vn/hoi-dap/dong-dien-khong-doi.308/"><span>Dòng điện không đổi</span></a></li><li><a href="https://hoc24.vn/hoi-dap/dong-dien-trong-cac-moi-truong.314/"><span>Dòng điện trong các môi trường</span></a></li><li><a href="https://hoc24.vn/hoi-dap/tu-truong.320/"><span>Từ trường</span></a></li><li><a href="https://hoc24.vn/hoi-dap/cam-ung-dien-tu.326/"><span>Cảm ứng điện từ</span></a></li><li><a href="https://hoc24.vn/hoi-dap/khuc-xa-anh-sang.331/"><span>Khúc xạ ánh sáng</span></a></li><li><a href="https://hoc24.vn/hoi-dap/mat-cac-dung-cu-quang-hoc.334/"><span>Mắt, các dụng cụ quang học</span></a></li> </ul>
</li>
<li id = "grade-10" class="">
<a href="">
<span class = "lop-10">
Lớp 10 </span>
<i class="fa fa-angle-left pull-right"></i>
</a>
<ul class="treeview-menu">
<li><a href="https://hoc24.vn/hoi-dap/dong-hoc-chat-diem.342/"><span>Động học chất điểm</span></a></li><li><a href="https://hoc24.vn/hoi-dap/dong-luc-hoc-chat-diem.350/"><span>Động lực học chất điểm</span></a></li><li><a href="https://hoc24.vn/hoi-dap/can-bang-va-chuyen-dong-cua-vat-ran.358/"><span>Cân bằng và chuyển động của vật rắn</span></a></li><li><a href="https://hoc24.vn/hoi-dap/cac-dinh-luat-bao-toan.365/"><span>Các định luật bảo toàn</span></a></li><li><a href="https://hoc24.vn/hoi-dap/chat-khi.371/"><span>Chất khí</span></a></li><li><a href="https://hoc24.vn/hoi-dap/co-so-cua-nhiet-dong-luc-hoc.376/"><span>Cơ sở của nhiệt động lực học</span></a></li><li><a href="https://hoc24.vn/hoi-dap/chat-ran-va-chat-long.379/"><span>Chất rắn và chất lỏng</span></a></li> </ul>
</li>
<li id = "grade-9" class="">
<a href="">
<span class = "lop-9">
Lớp 9 </span>
<i class="fa fa-angle-left pull-right"></i>
</a>
<ul class="treeview-menu">
<li><a href="https://hoc24.vn/hoi-dap/violympic-vat-ly-9.3531/"><span>Violympic Vật lý 9</span></a></li><li><a href="https://hoc24.vn/hoi-dap/dien-hoc-lop-9.462/"><span>Điện học lớp 9</span></a></li><li><a href="https://hoc24.vn/hoi-dap/dien-tu-hoc-lop-9.463/"><span>Điện từ học lớp 9</span></a></li><li><a href="https://hoc24.vn/hoi-dap/quang-hoc-lop-9.464/"><span>Quang học lớp 9</span></a></li><li><a href="https://hoc24.vn/hoi-dap/bao-toan-chuyen-hoa-nang-luong.465/"><span>Bảo toàn, chuyển hóa năng lượng</span></a></li> </ul>
</li>
<li id = "grade-8" class="">
<a href="">
<span class = "lop-8">
Lớp 8 </span>
<i class="fa fa-angle-left pull-right"></i>
</a>
<ul class="treeview-menu">
<li><a href="https://hoc24.vn/hoi-dap/co-hoc-lop-8.1991/"><span>Cơ học lớp 8</span></a></li><li><a href="https://hoc24.vn/hoi-dap/violympic-vat-ly-8.3530/"><span>Violympic Vật lý 8</span></a></li><li><a href="https://hoc24.vn/hoi-dap/nhiet-hoc-lop-8.2009/"><span>Nhiệt học lớp 8</span></a></li> </ul>
</li>
<li id = "grade-7" class="">
<a href="">
<span class = "lop-7">
Lớp 7 </span>
<i class="fa fa-angle-left pull-right"></i>
</a>
<ul class="treeview-menu">
<li><a href="https://hoc24.vn/hoi-dap/violympic-vat-ly-7.3529/"><span>Violympic Vật lý 7</span></a></li><li><a href="https://hoc24.vn/hoi-dap/quang-hoc-lop-7.468/"><span>Quang học lớp 7</span></a></li><li class = 'active'><a href="https://hoc24.vn/hoi-dap/am-hoc-lop-7.469/"><span>Âm học lớp 7</span><i class='fa fa-angle-left pull-right'></i></a><ul class='treeview-menu'><li><a href='https://hoc24.vn/hoi-dap/nguon-am.2992/'>Nguồn âm</a></li><li><a href='https://hoc24.vn/hoi-dap/do-cao-cua-am.2993/'>Độ cao của âm</a></li><li><a href='https://hoc24.vn/hoi-dap/do-to-cua-am.2994/'>Độ to của âm</a></li><li><a href='https://hoc24.vn/hoi-dap/moi-truong-truyen-am.2995/'>Môi trường truyền âm</a></li><li><a href='https://hoc24.vn/hoi-dap/phan-xa-am-tieng-vang.2996/'>Phản xạ âm - tiếng vang</a></li><li class = 'active'><a href='https://hoc24.vn/hoi-dap/chong-o-nhiem-tieng-on.2997/'>Chống ô nhiễm tiếng ồn</a></li></ul></li><li><a href="https://hoc24.vn/hoi-dap/dien-hoc-lop-7.470/"><span>Điện học lớp 7</span></a></li> </ul>
</li>
<li id = "grade-6" class="">
<a href="">
<span class = "lop-6">
Lớp 6 </span>
<i class="fa fa-angle-left pull-right"></i>
</a>
<ul class="treeview-menu">
<li><a href="https://hoc24.vn/hoi-dap/violympic-vat-ly-6.3528/"><span>Violympic Vật lý 6</span></a></li><li><a href="https://hoc24.vn/hoi-dap/co-hoc-lop-6.471/"><span>Cơ học lớp 6</span></a></li><li><a href="https://hoc24.vn/hoi-dap/nhiet-hoc-lop-6.472/"><span>Nhiệt học lớp 6</span></a></li> </ul>
</li>
</ul>
</li>
<li class="treeview">
<a class="tab-item" href="https://hoc24.vn/vat-ly/de-thi/" ><span>Đề thi</span></a>
</li>
<li class="treeview">
<a class="tab-item" href="https://hoc24.vn/bg/?s=2" >Các khóa học môn Vật lý</a>
</li>
<li class="treeview">
<a class="tab-item" href="https://doc24.vn/kho-tai-lieu/mon-vat-ly/lop-7" target = "_blank">Tài liệu môn Vật lý</a>
</li>
</ul>
</div>
</aside>
<div class="content-wrapper">
<section class="content-header">
<h1>Câu hỏi của Anh trần - Vật lý lớp 7</h1>
<div id = "hoc24noti" class = "noti-onpage"></div>
<center class = "top-banner">
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<!-- hoc24_xuyentrang_responsive -->
<ins class="adsbygoogle"
>
data-ad-client="ca-pub-2208223212947843"
data-ad-slot="3168611214"
data-ad-format="auto"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
<!-- <center> -->
<!--Code Top Banner-->
<!-- BEGIN TAG - DO NOT MODIFY -->
<!-- <script type="text/javascript">
/*<![CDATA[*/
adorg_key = "99de033bda1ecf58ed0407ad6185c701";
adorg_time = new Date().getTime();
adorg_channel = "";
adorg_code_format = "ads-sync.js";
adorg_click = "";
adorg_custom_params = {};
/*]]>*/
</script> -->
<!-- <script type='text/javascript' src='//serving.ad.org.vn/js/show_ads_adorg.js?pubId=477'></script> -->
<!-- END TAG -->
<!-- </center> -->
</center>
</section>
<section class="content">
<div class="row">
<div class="col-md-12">
<div class="lg-tabs light-font">
<a class="tab-item" href="https://hoc24.vn/ly-thuyet/chong-o-nhiem-tieng-on.2997/" >lý thuyết</a>
<a class="tab-item" href="https://hoc24.vn/trac-nghiem/chong-o-nhiem-tieng-on.2997/">trắc nghiệm</a>
<a class="tab-item active">hỏi đáp</a>
</div>
</div>
</div>
<div class="row">
<div class="col-md-8">
<div class = "row">
<div class = "col-md-12">
<a href="https://hoc24.vn/hoi-dap/create?id_subject=2&id_category=2997" class="btn btn-info" style = "margin-bottom: 16px;">Gửi câu hỏi</a>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div>
<p class="text-notice">
<i class="icon fa fa-warning"></i>
Người hay giúp bạn khác trả lời bài tập sẽ trở thành học sinh giỏi. Người hay hỏi bài thì không. Còn bạn thì sao?
</p>
</div>
<div class="tabbable">
<ul class="nav nav-tabs">
<li class="active"><a href="#tab_1" data-toggle="tab">Câu hỏi của Anh trần</a></li>
<li><a href="https://hoc24.vn/hoi-dap/chong-o-nhiem-tieng-on.2997/">Mới nhất</a></li>
<li><a href="https://hoc24.vn/hoi-dap/chong-o-nhiem-tieng-on.2997/?ft=no_answers" >Chưa trả lời</a></li>
<li><a href="https://hoc24.vn/hoi-dap/chong-o-nhiem-tieng-on.2997/?ft=features" >Câu hỏi hay</a></li>
</ul>
<div class="tab-content">
<div class="tab-pane active" id="tab_1">
<div class="box box-widget qtr pr" data-id="144628" subject-id="2">
<div class='box-header with-border'>
<div class='user-block'>
<img class='img-circle' src="https://lh6.googleusercontent.com/-x_0CvlyQCbA/AAAAAAAAAAI/AAAAAAAAAB4/Nr_U1V18IYI/photo.jpg?sz=60" alt='Anh trần'>
<span class='username'><a class="poshytip vip-" data-uid="94186" href="https://hoc24.vn/id/94186">Anh trần</a>
</span>
<span class='description'>12 tháng 12 2016 lúc 21:12</span>
</div>
<div class='box-tools pull-right'>
<div class="btn-group">
<button class="btn btn-box-tool dropdown-toggle" data-toggle="dropdown"><i class="fa fa-caret-down" >
<ul class="dropdown-menu" role="menu">
<li><a onclick = "QA.mark(this);">Theo dõi câu hỏi</a></li>
<li><a onclick = "QA.search(this);">Tìm câu hỏi tương tự</a></li>
<li><a onclick = "QA.report(this)">Báo cáo sai phạm</a></li>
</ul>
</div>
</div>
</div>
<div class='box-body box-body-qa question-content'>
<a class = 'block-link'>
<p>tính khoảng cách ngắn nhất từ người nói đến bức tường để nghe được tiếng vang biết vận tốc trong không khí là 340m/s?</p><p>ai trả lời được mình xin cảm ơn rất nhiều<img title="vui" alt="vui" width="40" height="40" src="/media/olmeditor/plugins/smiley/images/vui.png" /></p> </a>
<ol class = 'quiz-list'></ol> <span class='pull-right text-muted'><a href="https://hoc24.vn/hoi-dap/question/144628.html">4 câu trả lời</a></span>
<div class='tag-small'>
<span class='tag-2'>
<a href = 'https://hoc24.vn/vat-ly/hoi-dap/?lop=7' title = 'Vật lý lớp 7'>Vật lý lớp 7</a> </span>
<span><a href='https://hoc24.vn/hoi-dap/am-hoc-lop-7.469/'>Âm học lớp 7</a></span><span><a href='https://hoc24.vn/hoi-dap/chong-o-nhiem-tieng-on.2997/'>Chống ô nhiễm tiếng ồn</a></span> </div>
</div>
<div class="box-footer in-comments">
<form action="#" method="post">
<img class="img-responsive img-circle img-sm img-comment" src="https://hoc24.vn/images/avt/avt0_256by256.jpg" alt="alt text">
<div class="img-push question-cm">
<input type="text" class="form-control input-sm" placeholder="Trả lời câu hỏi này giúp bạn Anh trần" onclick="QA.answer(this);">
</div>
</form>
</div>
<div class="advertme">
<a href = 'https://olm.vn' title = 'Học toán trực tuyến' target = '_blank'><img src = 'https://hoc24.vn/modules/question/olm.jpg' alt = 'Học toán trực tuyến'></a> </div>
<div class='box-footer box-comments box-normal'>
<div id = 'ans-461018' class='box-comment answer-item pr cr-ans-0' data-id="461018" data-subject="2" data-user="58881">
<img class='img-circle img-sm img-comment' src='https://hoc24.vn/images/avt/avt58881_60by60.jpg' alt='Hoàng Sơn Tùng'>
<div class='comment-text'>
<span class="username">
<a class='poshytip' data-uid='58881' href='https://hoc24.vn/vip/tungbeobu123'>Hoàng Sơn Tùng</a> <span class='label label-success'><i class='fa fa-star fa-2'></i> CTV</span> <span class='text-muted pull-right'>12 tháng 12 2016 lúc 21:21</span>
</span>
<div class="answerx"><p>- Khoảng cách ngắn nhất từ người nói đến bức tường để nghe được tiếng vang là:</p><p> <span class="math-q">\(340.\frac{1}{15}:2=11,3\)</span>(m)</p></div>
<div class='like-panel'>
<a data-cmd='like' class="lk" data-id="461018" title="Câu trả lời đúng, bấm nút này để người hỏi biết rằng đó là câu trả lời hay và đúng" href="javascript:void(0);">
<span class="fa fa-thumbs-o-up"></span> Đúng
<span class='slt'>2</span> </a>
<span class='show-like btn-link fa fa-eye' data-id = '461018'></span>
<span class="btn-link btn-comment" data-cmd="461018">
<i class='fa fa-comment-o'></i> Bình luận </span>
<span class="btn-link btn-report-ans" data-cmd="461018" >
<i class='fa fa-warning'></i> Báo cáo sai phạm
</span>
</div>
<div class="user-like"></div>
</div>
<div id='list-sub-answer-461018' >
<div class="box-footer sub-in-comments sub-qtr hide" >
<form action="#" method="post">
<img class="img-responsive img-circle img-sm img-sub-comment" src="https://hoc24.vn/images/avt/avt0_60by60.jpg" alt="alt text">
<div class="img-push sub-question-cm">
<input type="text" class="form-control input-sm" placeholder="Bình luận câu trả lời này" onclick="QA.subanswer(this);" style = "margin-left: -10px;">
</div>
</form>
</div>
</div>
<div id = 'ans-461047' class='box-comment answer-item pr cr-ans-0' data-id="461047" data-subject="2" data-user="27567">
<img class='img-circle img-sm img-comment' src='https://lh3.googleusercontent.com/-D4NBPoopgMM/AAAAAAAAAAI/AAAAAAAAADo/67zP1_Zw-pg/photo.jpg?sz=60' alt='Quyền Trần Hồng'>
<div class='comment-text'>
<span class="username">
<a class='poshytip' data-uid='27567' href='https://hoc24.vn/id/27567'>Quyền Trần Hồng</a> <span class='text-muted pull-right'>12 tháng 12 2016 lúc 21:25</span>
</span>
<div class="answerx"><p>Ta có:Để nghe đc tiếng vang thì âm phản xạ phải cách âm trực tiếp ít nhất 1 khoảng là 1/15s=&gt;Khoảng cách ngắn nhất từ người nói đến bức tường ít nhất 1 khoảng là:</p><p> 2S=v.t=340.1/15=22,7(m)</p><p> =&gt;S=22,7:2=11,3(m)</p><p>Vậy khoảng cách ngắn nhất từ người nói đến bức tường ít nhất 1 khoảng là 11,3 m</p><p>&nbsp;</p></div>
<div class='like-panel'>
<a data-cmd='like' class="lk" data-id="461047" title="Câu trả lời đúng, bấm nút này để người hỏi biết rằng đó là câu trả lời hay và đúng" href="javascript:void(0);">
<span class="fa fa-thumbs-o-up"></span> Đúng
<span class='slt'>2</span> </a>
<span class='show-like btn-link fa fa-eye' data-id = '461047'></span>
<span class="btn-link btn-comment" data-cmd="461047">
<i class='fa fa-comment-o'></i> Bình luận </span>
<span class="btn-link btn-report-ans" data-cmd="461047" >
<i class='fa fa-warning'></i> Báo cáo sai phạm
</span>
</div>
<div class="user-like"></div>
</div>
<div id='list-sub-answer-461047' >
<div class="box-footer sub-in-comments sub-qtr hide" >
<form action="#" method="post">
<img class="img-responsive img-circle img-sm img-sub-comment" src="https://hoc24.vn/images/avt/avt0_60by60.jpg" alt="alt text">
<div class="img-push sub-question-cm">
<input type="text" class="form-control input-sm" placeholder="Bình luận câu trả lời này" onclick="QA.subanswer(this);" style = "margin-left: -10px;">
</div>
</form>
</div>
</div>
<div id = 'ans-503586' class='box-comment answer-item pr cr-ans-0' data-id="503586" data-subject="2" data-user="105490">
<img class='img-circle img-sm img-comment' src='https://hoc24.vn/images/avt/avt105490_60by60.jpg' alt='An Nguyễn Bá'>
<div class='comment-text'>
<span class="username">
<a class='poshytip' data-uid='105490' href='https://hoc24.vn/id/105490'>An Nguyễn Bá</a> <span class='text-muted pull-right'>26 tháng 12 2016 lúc 20:56</span>
</span>
<div class="answerx"><p> -Gọi S là khoảng cách</p>
<p> <span class="math-q">\(2\cdot S=v\cdot t=340\cdot\frac{1}{15}=23,6m\)</span></p>
<p> Vậy <span class="math-q">\(S=\frac{23,6}{2}=11,3m\)</span></p>
</div>
<div class='like-panel'>
<a data-cmd='like' class="lk" data-id="503586" title="Câu trả lời đúng, bấm nút này để người hỏi biết rằng đó là câu trả lời hay và đúng" href="javascript:void(0);">
<span class="fa fa-thumbs-o-up"></span> Đúng
<span class='slt'>1</span> </a>
<span class='show-like btn-link fa fa-eye' data-id = '503586'></span>
<span class="btn-link btn-comment" data-cmd="503586">
<i class='fa fa-comment-o'></i> Bình luận </span>
<span class="btn-link btn-report-ans" data-cmd="503586" >
<i class='fa fa-warning'></i> Báo cáo sai phạm
</span>
</div>
<div class="user-like"></div>
</div>
<div id='list-sub-answer-503586' >
<div class="box-footer sub-in-comments sub-qtr hide" >
<form action="#" method="post">
<img class="img-responsive img-circle img-sm img-sub-comment" src="https://hoc24.vn/images/avt/avt0_60by60.jpg" alt="alt text">
<div class="img-push sub-question-cm">
<input type="text" class="form-control input-sm" placeholder="Bình luận câu trả lời này" onclick="QA.subanswer(this);" style = "margin-left: -10px;">
</div>
</form>
</div>
</div>
<div id = 'ans-1446448' class='box-comment answer-item pr cr-ans-0' data-id="1446448" data-subject="2" data-user="351077">
<img class='img-circle img-sm img-comment' src='https://hoc24.vn/images/avt/default/s6.jpg' alt='nguyễn vương nguyên'>
<div class='comment-text'>
<span class="username">
<a class='poshytip' data-uid='351077' href='https://hoc24.vn/vip/anh5attgl'>nguyễn vương nguyên</a> <span class='text-muted pull-right'>20 tháng 12 lúc 20:13</span>
</span>
<div class="answerx"><p>mình không biết.mình ***** lắm</p>
<p><img alt="hehe" height="40" src="https://hoc24.vn/media/cke24/plugins/smiley/images/hehe.png" title="hehe" width="40"></p>
</div>
<div class='like-panel'>
<a data-cmd='like' class="lk" data-id="1446448" title="Câu trả lời đúng, bấm nút này để người hỏi biết rằng đó là câu trả lời hay và đúng" href="javascript:void(0);">
<span class="fa fa-thumbs-o-up"></span> Đúng
</a>
<span class="btn-link btn-comment" data-cmd="1446448">
<i class='fa fa-comment-o'></i> Bình luận </span>
<span class="btn-link btn-report-ans" data-cmd="1446448" >
<i class='fa fa-warning'></i> Báo cáo sai phạm
</span>
</div>
<div class="user-like"></div>
</div>
<div id='list-sub-answer-1446448' >
<div class="box-footer sub-in-comments sub-qtr hide" >
<form action="#" method="post">
<img class="img-responsive img-circle img-sm img-sub-comment" src="https://hoc24.vn/images/avt/avt0_60by60.jpg" alt="alt text">
<div class="img-push sub-question-cm">
<input type="text" class="form-control input-sm" placeholder="Bình luận câu trả lời này" onclick="QA.subanswer(this);" style = "margin-left: -10px;">
</div>
</form>
</div>
</div>
</div>
</div>
<center>
<!--In Read-->
<div id="AdAsia"></div>
</center>
<center>
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<ins class="adsbygoogle"
>
data-ad-format="fluid"
data-ad-layout="in-article"
data-ad-client="ca-pub-2208223212947843"
data-ad-slot="7376925551"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
</center>
<div class="row">
<div class="col-md-12">
<div id="related-qa">
<img src = '/images/loading.gif'>
</div>
</div>
</div>
<!-- Composite Start -->
<div id="M237049ScriptRootC107096">
<div id="M237049PreloadC107096">
Loading...
</div>
<script>
(function(){
var D=new Date(),d=document,b='body',ce='createElement',ac='appendChild',st='style',ds='display',n='none',gi='getElementById';
var i=d[ce]('iframe');i[st][ds]=n;d[gi]("M237049ScriptRootC107096")[ac](i);try{var iw=i.contentWindow.document;iw.open();iw.writeln("<ht"+"ml><bo"+"dy></bo"+"dy></ht"+"ml>");iw.close();var c=iw[b];}
catch(e){var iw=d;var c=d[gi]("M237049ScriptRootC107096");}var dv=iw[ce]('div');dv.id="MG_ID";dv[st][ds]=n;dv.innerHTML=107096;c[ac](dv);
var s=iw[ce]('script');s.async='async';s.defer='defer';s.charset='utf-8';s.src="//jsc.mgid.com/h/o/hoc24.vn.107096.js?t="+D.getYear()+D.getMonth()+D.getDate()+D.getHours();c[ac](s);})();
</script>
</div>
<!-- Composite End -->
<div><ul class = 'on-link'><li><a href = 'https://hoc24.vn/vat-ly/lop-6/' title = 'Vật lý lớp 6'>Vật lý 6</a></li><li><a href = 'https://hoc24.vn/vat-ly/lop-7/' title = 'Vật lý lớp 7'>Vật lý 7</a></li><li><a href = 'https://hoc24.vn/vat-ly/lop-8/' title = 'Vật lý lớp 8'>Vật lý 8</a></li><li><a href = 'https://hoc24.vn/vat-ly/lop-9/' title = 'Vật lý lớp 9'>Vật lý 9</a></li><li><a href = 'https://hoc24.vn/vat-ly/lop-10/' title = 'Vật lý lớp 10'>Vật lý 10</a></li><li><a href = 'https://hoc24.vn/vat-ly/lop-11/' title = 'Vật lý lớp 11'>Vật lý 11</a></li><li><a href = 'https://hoc24.vn/vat-ly/lop-12/' title = 'Vật lý lớp 12'>Vật lý 12</a></li></ul></div><center><h4><a href = 'https://hoc24.vn/hoi-dap/chong-o-nhiem-tieng-on.2997/'>Các câu hỏi liên quan khác...</a></h4></center> </div>
<div class="tab-pane active" id="tab_1">
</div>
<div class="tab-pane" id="tab2">
<p></p>
</div>
<div class="tab-pane" id="tab3">
<p>Dưới đây là những câu có bài toán hay do HOC24 lựa chọn.</p>
</div>
<div class="tab-pane" id="tab4">
<p></p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-4">
<div class="right-bar">
<div class="nav-tabs-custom">
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<!-- hoc24_test_right_300x250 -->
<ins class="adsbygoogle"
>
data-ad-client="ca-pub-2208223212947843"
data-ad-slot="1918387617"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
</div>
<div class="nav-tabs-custom">
<div id="imaginary_container">
<form method="get" action="/tim-kiem">
<div class="input-group stylish-input-group">
<input type="text" class="form-control" name="q" placeholder="Tìm kiếm" >
<span class="input-group-addon">
<button type="submit">
<span class="glyphicon glyphicon-search"></span>
</button>
</span>
</div>
</form>
</div>
</div>
<h4 class="center">Bảng xếp hạng môn Vật lý</h4>
<div class="nav-tabs-custom">
<ul class="nav nav-tabs pull-right">
<li><a href="#tab_sum_all" data-toggle="tab">Năm</a></li>
<li><a href="#tab_smonth" data-toggle="tab">Tháng</a></li>
<li class="active"><a href="#tab_sweek" data-toggle="tab">Tuần</a></li>
<li class="pull-left header"><i class="fa fa-star"></i></li>
</ul>
<div class="tab-content" id = "qa-static">
<div class='tab-pane ' id='tab_sum_all'><ul class = 'ranking-list-gp'><li class='ranking-userblock'><img class='img-circle' src = 'https://hoc24.vn/images/avt/avt164846_60by60.jpg'><span class = 'ranking-username'><a class = 'poshytip' data-uid = '164846' href = 'https://hoc24.vn/vip/nguyenlevangvang'>nguyen thi vang</a></span><span class = 'ranking-gp'>431GP</span></li><li class='ranking-userblock'><img class='img-circle' src = 'https://hoc24.vn/images/avt/avt23989_60by60.jpg'><span class = 'ranking-username'><a class = 'poshytip' data-uid = '23989' href = 'https://hoc24.vn/vip/bangoc'>Kayoko</a></span><span class = 'ranking-gp'>320GP</span></li><li class='ranking-userblock'><img class='img-circle' src = 'https://hoc24.vn/images/avt/avt22543_60by60.jpg'><span class = 'ranking-username'><a class = 'poshytip' data-uid = '22543' href = 'https://hoc24.vn/vip/hoangson'>Trần Hoàng Sơn</a></span><span class = 'ranking-gp'>292GP</span></li><li class='ranking-userblock'><img class='img-circle' src = 'https://hoc24.vn/images/avt/avt58881_60by60.jpg'><span class = 'ranking-username'><a class = 'poshytip' data-uid = '58881' href = 'https://hoc24.vn/vip/tungbeobu123'>Hoàng Sơn Tùng</a></span><span class = 'ranking-gp'>289GP</span></li><li class='ranking-userblock'><img class='img-circle' src = 'https://hoc24.vn/images/avt/avt29917_60by60.jpg'><span class = 'ranking-username'><a class = 'poshytip' data-uid = '29917' href = 'https://hoc24.vn/vip/windy_2003'>Đức Minh</a></span><span class = 'ranking-gp'>233GP</span></li><li class='ranking-userblock'><img class='img-circle' src = 'https://hoc24.vn/images/avt/avt209445_60by60.jpg'><span class = 'ranking-username'><a class = 'poshytip' data-uid = '209445' href = 'https://hoc24.vn/vip/taliw1'>Tenten</a></span><span class = 'ranking-gp'>231GP</span></li><li class='ranking-userblock'><img class='img-circle' src = 'https://hoc24.vn/images/avt/avt117543_60by60.jpg'><span class = 'ranking-username'><a class = 'poshytip' data-uid = '117543' href = 'https://hoc24.vn/vip/gomugomuno'>Hoàng Nguyên Vũ</a></span><span class = 'ranking-gp'>219GP</span></li><li class='ranking-userblock'><img class='img-circle' src = 'https://hoc24.vn/images/avt/avt41894_60by60.jpg'><span class = 'ranking-username'><a class = 'poshytip' data-uid = '41894' href = 'https://hoc24.vn/vip/196854584044216'>Truong Vu Xuan</a></span><span class = 'ranking-gp'>217GP</span></li><li class='ranking-userblock'><img class='img-circle' src = 'https://hoc24.vn/images/avt/avt114705_60by60.jpg'><span class = 'ranking-username'><a class = 'poshytip' data-uid = '114705' href = 'https://hoc24.vn/vip/thanhtuongsieucap'>Phạm Thanh Tường</a></span><span class = 'ranking-gp'>216GP</span></li><li class='ranking-userblock'><img class='img-circle' src = 'https://hoc24.vn/images/avt/avt22532_60by60.jpg'><span class = 'ranking-username'><a class = 'poshytip' data-uid = '22532' href = 'https://hoc24.vn/vip/chamhoc1712'>Lê Nguyên Hạo</a></span><span class = 'ranking-gp'>213GP</span></li></ul></div><div class='tab-pane ' id='tab_smonth'><ul class = 'ranking-list-gp'><li class='ranking-userblock'><img class='img-circle' src = 'https://hoc24.vn/images/avt/avt301041_60by60.jpg'><span class = 'ranking-username'><a class = 'poshytip' data-uid = '301041' href = 'https://hoc24.vn/vip/thichteammeo'>Team lớp A</a></span><span class = 'ranking-gp'>135GP</span></li><li class='ranking-userblock'><img class='img-circle' src = 'https://hoc24.vn/images/avt/avt164846_60by60.jpg'><span class = 'ranking-username'><a class = 'poshytip' data-uid = '164846' href = 'https://hoc24.vn/vip/nguyenlevangvang'>nguyen thi vang</a></span><span class = 'ranking-gp'>57GP</span></li><li class='ranking-userblock'><img class='img-circle' src = 'https://hoc24.vn/images/avt/avt263896_60by60.jpg'><span class = 'ranking-username'><a class = 'poshytip' data-uid = '263896' href = 'https://hoc24.vn/vip/windowphone'>ωîñdøω þhøñë</a></span><span class = 'ranking-gp'>55GP</span></li><li class='ranking-userblock'><img class='img-circle' src = 'https://hoc24.vn/images/avt/avt209445_60by60.jpg'><span class = 'ranking-username'><a class = 'poshytip' data-uid = '209445' href = 'https://hoc24.vn/vip/taliw1'>Tenten</a></span><span class = 'ranking-gp'>37GP</span></li><li class='ranking-userblock'><img class='img-circle' src = 'https://hoc24.vn/images/avt/avt241147_60by60.jpg'><span class = 'ranking-username'><a class = 'poshytip' data-uid = '241147' href = 'https://hoc24.vn/vip/nguyenhoanganhthu'>Nguyễn Hoàng Anh Thư</a></span><span class = 'ranking-gp'>31GP</span></li><li class='ranking-userblock'><img class='img-circle' src = 'https://hoc24.vn/images/avt/avt161521_60by60.jpg'><span class = 'ranking-username'><a class = 'poshytip' data-uid = '161521' href = 'https://hoc24.vn/vip/trannghia103'>Phạm Hoàng Giang</a></span><span class = 'ranking-gp'>22GP</span></li><li class='ranking-userblock'><img class='img-circle' src = 'https://hoc24.vn/images/avt/avt242700_60by60.jpg'><span class = 'ranking-username'><a class = 'poshytip' data-uid = '242700' href = 'https://hoc24.vn/vip/truongtho2k4'>Nguyễn Trường Thọ</a></span><span class = 'ranking-gp'>20GP</span></li><li class='ranking-userblock'><img class='img-circle' src = 'https://hoc24.vn/images/avt/avt145198_60by60.jpg'><span class = 'ranking-username'><a class = 'poshytip' data-uid = '145198' href = 'https://hoc24.vn/vip/trannghia100'>Trần Hoàng Nghĩa</a></span><span class = 'ranking-gp'>18GP</span></li><li class='ranking-userblock'><img class='img-circle' src = 'https://hoc24.vn/images/avt/avt114705_60by60.jpg'><span class = 'ranking-username'><a class = 'poshytip' data-uid = '114705' href = 'https://hoc24.vn/vip/thanhtuongsieucap'>Phạm Thanh Tường</a></span><span class = 'ranking-gp'>16GP</span></li><li class='ranking-userblock'><img class='img-circle' src = 'https://hoc24.vn/images/avt/avt145823_60by60.jpg'><span class = 'ranking-username'><a class = 'poshytip' data-uid = '145823' href = 'https://hoc24.vn/vip/duonghai1301'>Nguyễn Hải Dương</a></span><span class = 'ranking-gp'>12GP</span></li></ul></div><div class='tab-pane active' id='tab_sweek'><ul class = 'ranking-list-gp'><li class='ranking-userblock'><img class='img-circle' src = 'https://hoc24.vn/images/avt/avt164846_60by60.jpg'><span class = 'ranking-username'><a class = 'poshytip' data-uid = '164846' href = 'https://hoc24.vn/vip/nguyenlevangvang'>nguyen thi vang</a></span><span class = 'ranking-gp'>34GP</span></li><li class='ranking-userblock'><img class='img-circle' src = 'https://hoc24.vn/images/avt/avt263896_60by60.jpg'><span class = 'ranking-username'><a class = 'poshytip' data-uid = '263896' href = 'https://hoc24.vn/vip/windowphone'>ωîñdøω þhøñë</a></span><span class = 'ranking-gp'>12GP</span></li><li class='ranking-userblock'><img class='img-circle' src = 'https://hoc24.vn/images/avt/avt242700_60by60.jpg'><span class = 'ranking-username'><a class = 'poshytip' data-uid = '242700' href = 'https://hoc24.vn/vip/truongtho2k4'>Nguyễn Trường Thọ</a></span><span class = 'ranking-gp'>11GP</span></li><li class='ranking-userblock'><img class='img-circle' src = 'https://hoc24.vn/images/avt/avt161521_60by60.jpg'><span class = 'ranking-username'><a class = 'poshytip' data-uid = '161521' href = 'https://hoc24.vn/vip/trannghia103'>Phạm Hoàng Giang</a></span><span class = 'ranking-gp'>7GP</span></li><li class='ranking-userblock'><img class='img-circle' src = 'https://hoc24.vn/images/avt/avt145823_60by60.jpg'><span class = 'ranking-username'><a class = 'poshytip' data-uid = '145823' href = 'https://hoc24.vn/vip/duonghai1301'>Nguyễn Hải Dương</a></span><span class = 'ranking-gp'>7GP</span></li><li class='ranking-userblock'><img class='img-circle' src = 'https://hoc24.vn/images/avt/avt241147_60by60.jpg'><span class = 'ranking-username'><a class = 'poshytip' data-uid = '241147' href = 'https://hoc24.vn/vip/nguyenhoanganhthu'>Nguyễn Hoàng Anh Thư</a></span><span class = 'ranking-gp'>6GP</span></li><li class='ranking-userblock'><img class='img-circle' src = 'https://hoc24.vn/images/avt/avt345031_60by60.jpg'><span class = 'ranking-username'><a class = 'poshytip' data-uid = '345031' href = 'https://hoc24.vn/vip/thynguyen365'>Emily Thy</a></span><span class = 'ranking-gp'>5GP</span></li><li class='ranking-userblock'><img class='img-circle' src = 'https://hoc24.vn/images/avt/avt301041_60by60.jpg'><span class = 'ranking-username'><a class = 'poshytip' data-uid = '301041' href = 'https://hoc24.vn/vip/thichteammeo'>Team lớp A</a></span><span class = 'ranking-gp'>5GP</span></li><li class='ranking-userblock'><img class='img-circle' src = 'https://hoc24.vn/images/avt/avt145198_60by60.jpg'><span class = 'ranking-username'><a class = 'poshytip' data-uid = '145198' href = 'https://hoc24.vn/vip/trannghia100'>Trần Hoàng Nghĩa</a></span><span class = 'ranking-gp'>4GP</span></li><li class='ranking-userblock'><img class='img-circle' src = 'https://graph.facebook.com/373585572998650/picture?sz=60'><span class = 'ranking-username'><a class = 'poshytip' data-uid = '120721' href = 'https://hoc24.vn/id/120721'>Quang Vinh</a></span><span class = 'ranking-gp'>4GP</span></li></ul></div> <i><center>(Bảng xếp hạng này do giáo viên hoc24 đánh giá)</center></i>
</div>
</div>
<div class="nav-tabs-custom">
<a class="btn btn-block btn-primary" href="/tin-tuc/Danh-sach-nhan-thuong-Hoc24.html"><i class = "fa fa-gift"></i> Danh sách nhận thưởng hàng tuần</a>
<a class="btn btn-block btn-warning" href="/tin-tuc/Giai-thuong-thang-cho-hoc-sinh-tich-cuc.html"><i class = "fa fa-gift"></i> Danh sách nhận thưởng hàng tháng</a>
</div>
<h4 class="center">Kết nối hoc24 trên facebook</h4>
<div class="nav-tabs-custom">
<div class="fb-page" data-href="https://www.facebook.com/hoc24.vn/" data-small-header="false" data-adapt-container-width="true" data-hide-cover="false" data-show-facepile="true"><blockquote cite="https://www.facebook.com/hoc24.vn/" class="fb-xfbml-parse-ignore"><a href="https://www.facebook.com/hoc24.vn/">Học trực tuyến cùng hoc24.vn</a></blockquote></div>
</div>
<h4 class="center">Có thể bạn quan tâm</h4>
<div class="nav-tabs-custom">
<div class="tags">
</div>
</div>
<div class="nav-tabs-custom">
<center class = "padding-bottom-10">
<a href = "http://www.zuize.vn/cat/anh-che-doremon.html" title="Ảnh chế, ảnh động, ảnh hài, video hài, truyện cười - zuize.vn" target="_blank" ><img src = "/images/zuize.jpg" alt="Ảnh chế, ảnh động, ảnh hài, video hài, truyện cười - zuize.vn" width="300px"></a>
</center>
</div>
<div id="sticky">
<h4 class="center">Tài trợ</h4>
<center>
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<!-- hoc24_right_bottom_300x600 -->
<ins class="adsbygoogle"
>
data-ad-client="ca-pub-2208223212947843"
data-ad-slot="6493536418"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
</center>
</div>
<center class = "videoInread">
<script type="text/javascript">
/*<![CDATA[*/
adorg_key = "2c9f4d9c7a13f5909f93e2f19407bc35";
adorg_time = new Date().getTime();
adorg_channel = "";
adorg_code_format = "ads-sync.js";
adorg_click = "";
adorg_custom_params = {};
/*]]>*/
</script>
<script type='text/javascript' src='//serving.ad.org.vn/js/show_ads_adorg.js?pubId=478'></script>
</center>
</div>
</div>
</div>
</section>
</div>
<div class="modal fade" id="thankModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
<h4 class="modal-title" id="myModalLabel">Tuyệt vời quá!</h4>
</div>
<div class="modal-body">
<p>Câu hỏi của <b>Khách</b> đã được gửi lên hoc24 &#128522; <br><b>Mẹo nhỏ:</b> Click vào nút bên dưới để chia sẻ lên Facebook câu hỏi này và sẽ nhanh chóng nhận được câu trả lời từ các bạn của mình &#10084;</p> <center><button class='btn btn-social btn-facebook' onclick = 'shareFacebook();'><i class='fa fa-facebook'></i>Chia sẻ lên Facebook</button></center> </div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Đóng lại</button>
</div>
</div>
</div>
</div>
<script src="/media/cke24/ckeditor.js?v=3"></script>
<script src="/media/cke24/adapters/jquery.js?v=3"></script>
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "AskAction",
"agent": {
"@type": "Person",
"name": "Anh trần"
},
"question": {
"@type": "Question",
"text": "tính khoảng cách ngắn nhất từ người nói đến bức tường để nghe được tiếng vang biết vận tốc trong không khí là 340m/s?ai..."
}
}
</script>
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
showProcessingMessages: true,
messageStyle: "none",
showMathMenu: false,
tex2jax: {
inlineMath: [ ['$','$'], ["\\(","\\)"], ["\\[","\\]"] ],
displayMath: [ ['$$','$$'] ],
processEscapes: true
},
"HTML-CSS": { availableFonts: ["TeX"], linebreaks: { automatic: true, width: "75% container" } },
CommonHTML: { linebreaks: { automatic: true } }
});
</script>
<script type="text/javascript" async src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.2/MathJax.js?config=TeX-MML-AM_CHTML"></script>
<script type="text/javascript">
CKEDITOR.timestamp='5';
CKEDITOR.env.isCompatible = true;
CKEDITOR.config.imgurTitle = "Chống ô nhiễm tiếng ồn";
QA.addEventListener();
QA.loadRelatedQuestion(144628,2997,2);
function shareFacebook()
{
FB.ui({
method: "share",
href: "https://hoc24.vn/hoi-dap/question/144628.html",
}, function(response){});
$('#thankModal').modal('hide');
}
$(".quiz-list").parent().find("div.quiz-list>p").each(function(i,e){
$(e).attr("answer", i);
});
$(".quiz-list").parent().find("ol.quiz-list>li").each(function(i,e){
$(e).attr("answer", i);
});
$("#grade-7").addClass("active");
var id_q = 144628;
QA.quizAnswered(id_q);
auto = 0;
if(auto == 1 || auto == 2){
$('#thankModal').modal('show');
}
var pos = 0;
if(pos > 0)
{
$('html,body').animate({
scrollTop: $("#ans-"+pos).offset().top - 40},
1000);
setTimeout(function(){ $("#ans-"+pos).effect( "highlight", {}, 5000 ); }, 1000);
QA.loadcomment('[data-cmd=' + pos + ']');
}
</script>
<div id="menuUp">
<div class="fab btn-group show-on-hover dropup">
<div data-toggle="tooltip" data-placement="left" title="Liên kết" >
<button type="button" class="btn btn-primary btn-io dropdown-toggle" data-toggle="dropdown">
<span class="fa-stack fa-2x">
<i class="fa fa-circle fa-stack-2x fab-backdrop"></i>
<i class="fa fa-tag fa-stack-1x fa-inverse fab-primary"></i>
<i class="fa fa-share-alt fa-stack-1x fa-inverse fab-secondary"></i>
</span>
</button></div>
<ul class="dropdown-menu dropdown-menu-right" role="menu">
<li><a href="https://hoc24.vn/cuoc-thi/" data-toggle="tooltip" data-placement="left" title="Cuộc thi vui"><i class="fa fa-trophy"></i></a></li>
<li><a href="https://hoc24.vn/de-thi-thu/" data-toggle="tooltip" data-placement="left" title="Thi thử online"><i class="fa fa-file-text"></i></a></li>
<li><a href="https://hoc24.vn/on-thi-thpt/" data-toggle="tooltip" data-placement="left" title="Ôn thi THPT Quốc gia"><i class="fa fa-graduation-cap"></i></a></li>
<li><a href="https://hoc24.vn/hoi-dap/" data-toggle="tooltip" data-placement="left" title="Hỏi bài online"><i class="fa fa-question"></i></a></li>
<li><a href="https://hoc24.vn/" data-toggle="tooltip" data-placement="left" title="Trang chủ"><i class="fa fa-home"></i></a></li>
</ul>
</div>
</div>
<footer class="main-footer">
<div class="pull-right hidden-xs">
<a href="http://online.gov.vn/HomePage/CustomWebsiteDisplay.aspx?DocId=38463" target="_blank" rel="nofollow"><img src="https://hoc24.vn/images/dathongbao.png" width = 160></a>
</div>
<p><strong>Trung tâm Khoa học Tính toán - Trường ĐHSP Hà Nội &copy; 2014 - 2017</strong></p>
<p>Liên hệ: Hà Đức Thọ - Hotline: 0986 557 525 - Email: hdtho@hoc24.vn</p>
<p>
<a href="https://hoc24.vn/tin-tuc/Dieu-khoan-su-dung-hoc24-vn.html">Điều khoản dịch vụ</a> | <a href="https://hoc24.vn/tin-tuc/Chinh-sach-rieng-tu,-bao-mat.html">Chính sách bảo mật</a> | <a href="https://hoc24.vn/tin-tuc/Chinh-sach-bao-hanh.html">Chính sách bảo hành</a>
</p>
</footer>
</div>
<script type="text/javascript" src="/media/templates/hoc24/plugins/progress/pace.min.js"></script>
<script type="text/javascript" src="/media/templates/hoc24/plugins/slimScroll/jquery.slimscroll.min.js"></script>
<script type="text/javascript" src="/media/templates/hoc24/dist/js/app.js?v=10"></script>
<script type="text/javascript" src="https://hoc24.vn/media/jquery/jquery.poshytip.min.js?v=2"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-66155712-1', 'auto');
ga('send', 'pageview');
</script>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/vi_VN/sdk.js#xfbml=1&version=v2.5&appId=922609287827985";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
setInterval(function(){$.ajax({url:"https://hoc24.vn/?g=keep_alive"});},200000);
var notice = "<div class='alert alert-warning alert-dismissable' style = 'display:none;'><button type='button' class='close' data-dismiss='alert' aria-hidden='true'>&times;</button><center>Giải thường Cộng tác viên nhiệm kỳ 3 - Hè 2017 <a class='btn btn-info' href='https://hoc24.vn/tin-tuc/Thuong-Cong-tac-vien-nhiem-ki-3-He-2017.html'> Xem thêm</a></center></div>";
if(notice != ""){
$("#hoc24noti").html(notice);
}
//Menu up mobile
// Menu up destop
var bottom = $(window).height() / 2 - 50;
$('.fab').css({
'position' : 'fixed',
'bottom' : bottom+'px',
'right' : '10px'
});
$('.fab').hover(function () {
$(this).toggleClass('active');
});
$(function () {
$('[data-toggle="tooltip"]').tooltip({
container: 'body'
});
})
</script>
<!-- BEGIN TAG - DO NOT MODIFY -->
<script type="text/javascript">
/*<![CDATA[*/
adorg_key = "412b173f5dcecacd8641922e571f4a99";
adorg_time = new Date().getTime();
adorg_channel = "";
adorg_code_format = "ads-sync.js";
adorg_click = "";
adorg_custom_params = {};
/*]]>*/
</script>
<script type='text/javascript' src='//serving.ad.org.vn/js/show_ads_adorg.js?pubId=431'></script>
<!-- END TAG -->
</body>

</html>

2
25 tháng 12 2017

BỊ RẢNH À. ĐÚNG LÀ CHẬT ĐẤT. ĐĂNG MẤY CÁI NÀY LÀM GÌ ?

25 tháng 12 2017

rảnh nợ,bn có bít là bây giờ các bn khác giờ đang ôn thi và có 1 số câu trả lời chưa giải đáp được và cần gấp những câu trả lời của các bn để thi thật tốt ko,còn bn thì sao, bn đăng như thế chẳng phải là đang lấn át diện tích hay sao,hơn nữa,câu hỏi của bn sẽ đẩy những câu hỏi khó của các bn khác sang trang khác rùi mấy bn khác sẽ ko tìm đc câu hỏi và sẽ ko có câu trả lời để ôn thi ko hả,bn rảnh thì lo ôn thi đi mà nếu thi rùi thì cũng nên tìm việc j làm để giúp đỡ bố mẹ đi chứ,bn đăng cái này có ai hỉu đâu mà toàn làm tốn S ko vậy hả?bucquabucquabucqua

Dẫn nhập Trong các bài trước chúng ta đã cùng nhau tìm hiểu TỔNG QUAN NGÔN NGỮ PYTHON cũng như MÔI TRƯỜNG PHÁT TRIỂN của nó. Ở bài này, Kteam sẽ hướng dẫn các bạn CÁCH CHẠY MỘT CHƯƠNG TRÌNH PYTHON cơ bản nhé! Nội dung chính Để theo dõi bài này, bạn nên xem qua bài: CÀI ĐẶT MÔI TRƯỜNG PHÁT TRIỂN CHO PYTHON. Trong bài này, chúng ta sẽ tìm hiểu: Thao tác trực tiếp với Interactive...
Đọc tiếp

Dẫn nhập

Trong các bài trước chúng ta đã cùng nhau tìm hiểu TỔNG QUAN NGÔN NGỮ PYTHON cũng như MÔI TRƯỜNG PHÁT TRIỂN của nó.

Ở bài này, Kteam sẽ hướng dẫn các bạn CÁCH CHẠY MỘT CHƯƠNG TRÌNH PYTHON cơ bản nhé!

Nội dung chính

Để theo dõi bài này, bạn nên xem qua bài:

  • CÀI ĐẶT MÔI TRƯỜNG PHÁT TRIỂN CHO PYTHON.

Trong bài này, chúng ta sẽ tìm hiểu:

  • Thao tác trực tiếp với Interactive Prompt
  • Chạy chương trình bằng command line

Thao tác trực tiếp với Interactive Prompt

Như ở bài trước, các bạn sử dụng Command Prompt để kiểm tra cài đặt thành công hay chưa bằng cách gõ python lên Command Prompt.

Như các bạn thấy ở hình trên đó chính là một Interactive Prompt để thao tác với Python.

Và chúng ta sẽ chạy chương trình huyền thoại “Hello ”.

Như các bạn có thể thấy mình vừa thao tác trực tiếp với interactive prompt.

Ưu điểm:

  • Thao tác đơn giản, dễ dàng.
  • Cho kết quả ngay lặp tức khi kết thúc câu lệnh

Nhược điểm:

  • Không thích hợp cho việc một dãy lệnh dài, có cấu trúc
  • Khi code sai chính tả, sai logic không thể sửa

Chạy chương trình bằng command line

Muốn chạy một chương trình Python bằng Command line thì chúng ta phải tạo ra được một file Python. Một file Python là một file mà có phần đuổi (mở rộng) là .py

Như đã giới thiệu ở bài CÀI ĐẶT MÔI TRƯỜNG PHÁT TRIỂN PYTHON. Editor để soạn code sẽ là SUBLIME TEXT. Và mình sẽ dùng Sublime Text tạo một file Python.

Khởi tạo file Python

Bước 1: Đầu tiên, chúng ta mở Sublime Text lên và chọn File > New File

  • Hoặc bạn cũng có thể dùng phím tắt Ctrl + N

Bước 2: Tiếp tục chọn File > Save

  • Hoặc sử dụng phím tắt Ctrl + S để lưu lại file
  • Sau khi chọn Save thì sẽ có một hộp thoại yêu cầu tại Save as Type > chọn Python trong danh sách chọn.
  • Tiếp đến, các bạn tìm nơi để lưu lại file. Ở đây mình sẽ lưu ở ngoài Desktop
  • Và cuối cùng, các bạn điền tên file vào ô File name. Các bạn nhớ là phải thêm .py vào cuối tên file nữa. Ở đây mình chọn tên file là Hello > Save

Sau cùng, đây chính là file Python mình vừa tạo ở ngoài Desktop

Thao tác trên file vừa khởi tạo

Công đoạn tiếp theo là mình nhập code vào trong file Hellodfffff.py vừa mới tạo ở phần trên, sau đó lưu lại bằng Ctrl + S

print (“Hello dffff)

Kế đến mình ra ngoài Desktop – vị trí lưu file khởi tạo để bắt đầu thực hiện chạy chương trình. Các bạn giữ nút Shift và nhấn chuột phải vào một khoảng trống nào gần đấy và chọn Open command window here để mở Command Prompt

Và rồi sau đó, bạn gõ command line với cấu trúc sau > Enter

python <tên file.py>

Và như các bạn đã thấy chúng ta đã in ra thành công dòng chữ “Hello dfffff”

Kết Luận

Qua bài học này chúng ta đã hiểu được CÁCH CHẠY CHƯƠNG TRÌNH PYTHON qua interactive mode và bằng command line.

Bài sau chúng ta sẽ tìm hiểu CÁCH GHI CHÚ TRONG PYTHON.

Cảm ơn các bạn đã theo dõi bài viết. Hãy để lại bình luận hoặc góp ý của mình để phát triển bài viết tốt hơn nữa. Đừng quyên “Luyện tập – Thử thách – Không ngại khó”.

5
23 tháng 4 2020

đang học onl! Có j lát t tag cho!

cj ưi, rep tin nhắn trên lazi đuyy =.='' nhắn mấy ngày rồi mà hỏng rep :((