Những câu hỏi liên quan
TT
Xem chi tiết
DS
10 tháng 3 2022 lúc 0:54

program ct;

uses crt;

var

s1,s2:string;

begin

clrscr;

write('nhap ho dem: ');

readln(s1);

write('nhap ten: ');

readln(s2);

writeln('ten day du la: ',s1,' ',s2);

readln;

end.

Bình luận (0)
HB
Xem chi tiết
NT
22 tháng 2 2022 lúc 11:31

uses crt;

var st:array[1..10]of string;

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

i,n:integer;

begin

clrscr;

readln(n);

for i:=1 to n do 

 readln(st[i],a[i]);

for i:=1 to n do 

  writeln(st[i],' ',a[i]);

readln;

end.

Bình luận (0)
NL
Xem chi tiết
KT
10 tháng 2 2022 lúc 14:02

hello

Bình luận (2)
NT
10 tháng 2 2022 lúc 14:25

uses crt;

var st:string;

d,i:integer;

kt:boolean;

begin

clrscr;

readln(st);

writeln('ten cua nguoi do la: ',st);

d:=length(st);

kt:=false;

for i:=1 to d do 

  if (st[i]='A') or (st[i]='B') then kt:=true;

if (kt=true) then writeln('co')

else writeln('khong');

readln;

end.

Bình luận (0)
ML
Xem chi tiết
QL
23 tháng 8 2023 lúc 0:26

ds=list(map(str,input().split()))

c={}

for i in ds:

  if i in c:

   c[i] =c[i]+1

  else:

   c[i] = 1

print('số tên khác nhau là',len(c))

print('mỗi tên có số lần xuất hiện là:')

for i in c:

  print(i, c[i])

Bình luận (0)
VN
Xem chi tiết
NL
10 tháng 8 2017 lúc 22:08

chịu haha

Bình luận (0)
NN
24 tháng 8 2017 lúc 20:20

uses crt;
type ht=record
ho:string[15];
dem:string[10];
ten:string[10];
end;
var a:array[1..100] of ht;
stmp:ht;
i,j,n,tmp:integer;
s1,s2:string;
begin
clrscr;
write('So hs < 50! so hs=');readln(n);
for i:=1 to n do
begin
write('Ho hs ',i,':');readln(a[i].ho);
write('dem hs ',i,':');readln(a[i].dem);
write('Ten hs ',i,':');readln(a[i].ten);
end;

for i:=1 to n do
for j:=i+1 to n do
begin
if a[i].ten>a[j].ten then
begin
stmp:=a[i];
a[i]:=a[j];
a[j]:=stmp;
end;
if a[i].ten=a[j].ten then
if a[i].dem>a[j].dem then
begin
stmp:=a[i];
a[i]:=a[j];
a[j]:=stmp;
end
else if a[i].dem=a[j].dem then
if a[i].ho>a[j].ho then
begin
stmp:=a[i];
a[i]:=a[j];
a[j]:=stmp;
end;

end;
for i:=1 to n do
begin
writeln('Hs ',i,':',a[i].ho,' ',a[i].dem,' ',a[i].ten);
end;
readln;
end.

Bình luận (0)
VC
Xem chi tiết
NT
9 tháng 6 2020 lúc 23:01

https://hoc24.vn/hoi-dap/question/414599.html

Bình luận (0)
HD
Xem chi tiết
VG
2 tháng 3 2022 lúc 19:19

XEM HÌNH

imagerotate

Bình luận (0)
HD
Xem chi tiết
DD
2 tháng 3 2022 lúc 19:05

image

Bình luận (0)
KT
Xem chi tiết