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 11 2021

ko lo học đăng mấy cáy ảnh gì đâu ko

26 tháng 2 2022

bn

There are many activities that people do in their free time to relax their stressed mind. Among long list of varios activities, there is one I’m interested in, that is travelling – an informative and adventurous hobby which is also one of the most popular pastimes. For some it is a waste of time and money. They argue to use an alternative like read a book or watch a film related to places to be travelled. They forget that touch of actuality gives a different type of sensation and...
Đọc tiếp

There are many activities that people do in their free time to relax their stressed mind. Among long list of varios activities, there is one I’m interested in, that is travelling – an informative and adventurous hobby which is also one of the most popular pastimes. For some it is a waste of time and money. They argue to use an alternative like read a book or watch a film related to places to be travelled. They forget that touch of actuality gives a different type of sensation and satisfaction.Travelling is a perfect educational hobby as it helps you learn a lot of new things in life. Travelling gives you a great break from your routine and an opportunity to learn a new culture and make friends. The people you come across and interact with may give you some new chances in life, or they may open up your mind. Another interesting thing about travel is that you can travel by many different means such as trains, buses, airplanes, ....

0
31 tháng 5 2017

Đáp án D

5 tháng 11 2017

Đáp án D

10 tháng 5 2022

lÀM J CÓ d NÀO????

21 tháng 12 2021

C

23 tháng 12 2021

Chojn C

21 tháng 12 2021

D. Chọn Insert/ Drop Cap

ĐÁP ÁN VÒNG 1 CUỘC THI TIN HỌC LẦN 3Câu 1(2 điểm)uses crt;var n,dv,ch:integer;beginclrscr;readln(n);if (0<=n) and (n<=19) thenbegincase n of0: write('zero');1: write('one');2: write('two');3: write('three');4: write('four');5: write('five');6: write('six');7: write('seven');8: write('eight');9: write('nine');10: write('ten');11: write('eleven');12: write('twelve');13: write('thirteen');14: write('fourteen');15: write('fifteen');16: write('sixteen');17: write('seventeen');18:...
Đọc tiếp

ĐÁP ÁN VÒNG 1 CUỘC THI TIN HỌC LẦN 3

Câu 1(2 điểm)

uses crt;

var n,dv,ch:integer;

begin

clrscr;

readln(n);

if (0<=n) and (n<=19) then

begin

case n of

0: write('zero');

1: write('one');

2: write('two');

3: write('three');

4: write('four');

5: write('five');

6: write('six');

7: write('seven');

8: write('eight');

9: write('nine');

10: write('ten');

11: write('eleven');

12: write('twelve');

13: write('thirteen');

14: write('fourteen');

15: write('fifteen');

16: write('sixteen');

17: write('seventeen');

18: write('eighteen');

19: write('nineteen');

end;

end

else

begin

dv:=n mod 10;

ch:=n div 10;

case ch of 2:

write('twenty');

3: write('thirty');

4: write('forty');

5: write('fifty');

6: write('sixty');

7: write('seventy');

8: write('eighty');

9: write('ninety');

end;

if dv>0 then

begin

write('-');

case dv of 1:

write('one');

2: write('two');

3: write('three');

4: write('four');

5: write('five');

6: write('six');

7: write('seven');

8: write('eight');

9: write('nine');

end;

end;

end;

end.

Câu 2(2 điểm)

uses crt;

var a,b,t,bcnn:int64;

begin

readln(a,b);

bcnn:=a*b;

t:=b mod a;

while t<>0 do

begin

t:=a mod b;

a:=b;

b:=t;

end;

bcnn:=bcnn div a;

writeln(a,' ',bcnn);

readln;

end.

Câu 3(4 điểm)

uses crt;

var q,i:longint;

n:array[1..10] of longint;

begin

clrscr;

readln(q);

for i:=1 to q do

readln(n[i]);

for i:=1 to q do

begin

if (n[i] mod 4=0) and (n[i] mod 100<>0) then writeln('YES')

else if n[i] mod 400=0 then writeln('YES')

else writeln('NO');

end;

end.

Câu 4(2 điểm)

uses crt;

var n,p,x,dem:int64;

{----------------------chuong-trinh-con-tim-ucln---------------------}

function ucln(a,b:int64):int64;

var t:int64;

begin

t:=b mod a;

while t<>0 do

begin

t:=a mod b;

a:=b;

b:=t;

end;

ucln:=a;

end;

{---------------------chuong-trinh-chinh---------------------}

begin

readln(n,p);

dem:=0;

for x:=1 to n do

if ucln(x,n)=p then inc(dem);

writeln(dem);

end.

Câu 5(10 điểm) Bài làm của bạn @Hưng Nguyễn Thái

#include<bits/stdc++.h>

using namespace std;

#define ll long long #define mod (ll)(1e7+7)

const ll N = 1000000;

ll lp[N+1];

vector<ll > pr;

void solve()

{ for (ll i=2; i<=N; ++i)

{ if (lp[i] == 0)

{ lp[i] = i; pr.push_back (i);

}

for (ll j=0; j<(ll )pr.size() && pr[j]<=lp[i] && i*pr[j]<=N; ++j)

lp[i * pr[j]] = pr[j];

}

}

ll po(ll a,ll n)

{ ll res=a, ans=1; while(n)

{ if(n%2) ans=ans*res%mod; res=res*res%mod; n/=2;

}

return ans;

}

ll aka(ll p, ll alpha)

{

if(alpha==0) return 1;

if(alpha==1) return (p+1);

if(alpha%2==1) return p*aka(p,alpha-1)+1;

if(alpha%2==0) return (po(p,alpha/2)+1)*(aka(p,alpha/2)-1)+1;

}

ll f(ll n)

{

ll tmp,i=0,so_mu,res=1;

while(pr[i]<=n)

{

tmp=pr[i];

so_mu=0;

while(tmp<=n)

{

so_mu = so_mu+ (n/tmp);

tmp=tmp*pr[i];

}

res=res*(so_mu+1)*(so_mu+2)/2%mod; i++;

}

return res;

}

int main(){ ll n,res; solve();

while(1)

{

cin>>n;

if(n==0) break;

res=f(n);

cout<<res<<'\n';

}

}

9

Nhìn dài quá

Ngủ thôi

15 tháng 5 2021

lồn buồi (1)

đầu buồi(2)

23 tháng 5 2021

Để lưu văn bản ta thực hiện lệnh: File+save

Lệnh Insert → Break → Page break  dùng để: ngắt trang

Để mở hộp thoại Find and Replace ta nhấn tổ hợp phím: Ctrl F hoặc Ctrl H

Mạng Wide Area Network  là mạng : diện rộng 

Internet Explore và Google Chrome là các: trình duyệt Web

Phần C Tự luận 

Câu 1 Web tĩnh là siêu văn bản được phát hành trên Internet với nội dung không thay đổi còn trang web động mở ra khả năng tương tác giữa người dùng với máy chủ chứa trang web 

Câu 2 Internet là mạng máy tính khổng lồ, kết nối hàng triệu máy tính trên khắp thế giới và sử dụng bộ giao thức truyền thông TCP/IP

3 cách kết nối Internet là :

- Sử dụng môdem qua đường điện thoại 

- Sử dụng đường truyền riêng 

- Sử dụng đường truyền ADSL(Asymmertric Digital Subscriber Line - đường thuê bao số bất đối xứng )