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.

12 tháng 3 2021

12 tháng 3 2021

Program hotrotinhoc;

var s: string;

t,c,i: byte;

begin

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

t:=0;

for i:=1 to length(s) do

if s[i] in ['1'..'9'] then

begin

val(s[i],c);

t:=t+c;

end;

write(t);

readln

end.

Thu gọn

24 tháng 12 2022

uses crt;

var st:string;

dem,i,d:integer;

begin

clrscr;

readln(st);

dem:=0;

d:=length(st);

for i:=1 to d do

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

write(dem);

readln;

end.

23 tháng 2 2023

string = input("Nhập vào một xâu kí tự: ")

count = string.count('tiền')

print('Xâu kí tự có ', count, 'từ "tiền"')

17 tháng 3 2023

Program HOC24;

var s: string;

i,d: byte;

begin

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

while s[1]=#32 do delete(s,1,1);

while length(s)=#32 do delete(s,length(s),1);

while pos(#32#32,s)<>0 do delete(s,pos(#32#32,s),1);

d:=0;

for i:=1 to length(s) do if s[i]=#32 then d:=d+1;

write('Trong xau co ',d+1, ' tu');

readln

end.

30 tháng 12 2021

#include <bits/stdc++.h>

using namespace std;

string st;

char ktu;

int dem,i,d;

int main()

{

getline(cin,st);

cin>>ktu;

d=st.length();

dem=0;

for (i=0; i<=d-1; i++)

if (st[i]==ktu) dem++;

cout<<dem;

return 0;

}

17 tháng 3 2021

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

17 tháng 3 2021

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.

27 tháng 3 2023

s = input("Nhập xâu S: ")

k = input("Nhập kí tự k: ")

count = 0

for c in s:

     if c == k:

          count += 1

print("Số lần xuất hiện của kí tự k trong xâu S là:", count)

24 tháng 2 2022

tham khảo

 

uses crt;

var a:string;

i,d,dem:integer;

begin

clrscr;

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

dem:=0;

d:=length(a);

for i:=1 to d do

if a[i]=' ' then inc(dem);

writeln(dem);

readln;

end.

24 tháng 2 2022

tks b

 

31 tháng 12 2021

chj check ib em ạ

31 tháng 12 2021

#include <bits/stdc++.h>

using namespace std;

string s;

int d,i,dem;

int main()

{

cin>>s;

d=s.length();

dem=0;

for (i=0; i<=d-1; i++)

if (s[i]=='a') dem++;

cout<<dem;

return 0;

}