Tuyển Cộng tác viên Hoc24 nhiệm kì 26 tại đây: https://forms.gle/dK3zGK3LHFrgvTkJ6


Những câu hỏi liên quan
TT
Xem chi tiết
KL
25 tháng 3 2022 lúc 9:24

var st:string;

i,dem:integer;

begin

write('Nhap xau ki tu: ');readln(st);

for i:=1 to length(st) do

if st[i]=' ' then dem:=dem+1;

write('so ki tu la dau cach la ',dem);

readln;

end.

Bình luận (0)
NT
Xem chi tiết
KN
8 tháng 4 2021 lúc 22:56

program ki_tu;

uses crt;

var s: string;

      d,i,n: integer;

begin

clrscr;

write('nhap xau s: ');readln(s);

n:= length(s);

s:=upcase(s);

write('xau s sau khi duoc in hoa la: ');

writeln(s);

d:=0;

for i:= 1 to n do

if s[i] = 'A' then d:= d+1 ;

writeln('chu cai A xuat hien ',d,' lan');

readln

end.

 

 

 

Bình luận (0)
NT
9 tháng 4 2021 lúc 9:43

Uses crt;

Var st:string;

D,i,dem:integer;

Begin

Clrscr;

Write('nhap xau:'); readln(st);

D:=length(st);

Dem:=0;

For i:=1 to d do

If st[i]='A' then inc(dem);

Writeln(dem);

Readln;

End.

Bình luận (0)
NH
Xem chi tiết
DT
25 tháng 2 2018 lúc 10:40

Var a: string;

 i, Dem: integer;

Begin

 writeln(‘nhap xau:’);

 Readln(a);

 Dem:=0;

 For i:=1 to length(a) do

 If (‘a’<=a[i]) and (a[i]<=’z’)

  Dem:= Dem+1;

 Writeln(Dem);

 Readln

End.

Bình luận (0)
NH
Xem chi tiết
DT
20 tháng 8 2019 lúc 7:45

Var a: string;

  i, Dem: integer;

Begin

 writeln(‘nhap xau:’);

 Readln(a);

 Dem:=0;

 For i:=1 to length(a) do

 If (‘A’<=a[i]) and (a[i]<=’Z’) then

  Dem:= Dem+1;

 Writeln(Dem);

 Readln

End.

Bình luận (0)
NL
Xem chi tiết
NL
Xem chi tiết
NT
14 tháng 4 2021 lúc 12:58

uses crt;

var st:string;

i,d,dem:integer;

begin

clrscr;

write('Nhap xau:'); readln(st);

d:=length(st);

dem:=0;

for i:=1 to d do 

  if (st[i] in ['a'..'z']) or (st[i] in ['A'..'Z']) then inc(dem);

writeln(dem);

readln;

end.

Bình luận (0)
NT
Xem chi tiết
BT
28 tháng 4 2021 lúc 19:37

Bình luận (0)
PH
Xem chi tiết
NT
26 tháng 3 2021 lúc 16:05

uses crt;

var s:string;

i,d:integer;

begin

clrscr;

write('Nhap xau S:'); readln(s);

d:=length(s);

for i:=1 to d do 

  if (s[i] in ['a'..'z']) or (s[i] in ['A'..'Z']) then delete(s,i,1);

writeln('Xau sau khi xoa het ki tu chu la: ',s);

readln;

end.

Bình luận (0)
HT
Xem chi tiết
HT
17 tháng 3 2021 lúc 18:04

Giúp mk với mai mk phải nộp r

Bình luận (0)
ML
17 tháng 3 2021 lúc 18:36

Program HOC24;

var s: string;

i,d: byte;

begin

write('Nhap xau: '); readln(s);

d:=0;

for i:=1 to length(s) do if (s[i]='b') or (s[i]='B') then d:=d+1;

write('Co ',d,' ki tu B trong xau');

readln

end.

Bình luận (1)