Tìm kí tự thứ 101 của chuỗi kí tự lặp: TINHOCTRETINHOCTRE…
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.
TINHOCTRE là có 9 chữ
có tất cả chữ TINHOCTRE là
101 : 9 = 11 ( dư 2)
Dư 2 tức là chữ T và I cho nên chữ số 101 là chữ I
Câu 2:
uses crt;
var a,b:array[1..100]of integer;
i,n,t,dem,j,kt,dem1:integer;
begin
clrscr;
readln(n);
for i:=1 to n do
readln(a[i]);
t:=0;
for i:=1 to n do t:=t+a[i];
writeln(t);
dem:=1;
b[1]:=a[1];
for i:=1 to n do
begin
kt:=0;
for j:=1 to dem do
if b[j]=a[i] then kt:=1;
if kt=0 then
begin
inc(dem);
b[dem]:=a[i];
end;
end;
for i:=1 to dem do
begin
dem1:=0;
for j:=1 to n do
if a[j]=b[i] then inc(dem1);
writeln(b[i],' xuat hien ',dem1,' lan');
end;
readln;
end.
def tach_chuoi(chuoi):
ky_tu_so = " "
ky_tu_chu = " "
for ky_tu in chuoi:
if ky_tu.isdigit():
ky_tu_so += ky_tu
elif ky_tu.isalpha():
ky_tu_chu += ky_tu
return ky_tu_so, ky_tu_chu
chuoi = input("Nhập vào một chuỗi: ")
ky_tu_so, ky_tu_chu = tach_chuoi(chuoi)
print("Các ký tự số trong chuỗi:", ky_tu_so)
print("Các ký tự chữ cái trong chuỗi:", ky_tu_chu)
uses crt;
var st:string;
d,i:integer;
begin
clrscr;
readln(st);
d:=length(st);
for i:=1 to d do
if (st[i] in ['a'..'z']) then write(st[i]);
writeln;
for i:=1 to d do
if (st[i] in ['0'..'9']) then write(st[i]);
readln;
end.
uses crt;
var s:string;
i,d,dem:integer;
begin
clrscr;
write('Nhap chuoi S:'); readln(s);
d:=length(s);
writeln('Trong chuoi ',s,' co ',d,' ki tu');
writeln('Chuoi dao cua chuoi ',s,' la: ');
for i:=d downto 1 do
write(s[i]:4);
writeln;
dem:=0;
for i:=1 to d do
if s[i] in ['0'..'9'] then inc(dem);
writeln('So chu so trong xau la: ',dem);
readln;
end.
#include <bits/stdc++.h>
using namespace std;
string st;
int d,i;
int main()
{
getline(cin,st);
d=st.length();
for (i=0; i<=d-1; i++) swap(st[i],st[n-1-(i-1)]);
cout<<st;
return 0;
}
ta có : tinhoctre gồm 9 kí tự
lấy 101:9=11(dư 2)
đếm từ trái qua thấy chứ thứ 2 là i
vậy kí tự thứ 101 là i