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.

15 tháng 3 2021

Program HOC24;

var s: string;

begin

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

for i:=1 to 5 do writeln(s);

readln

end.

31 tháng 3 2023

Câu 1:

ho_ten = input("Nhập họ tên: ")

tach_ho_ten = ho_ten.split()

if len(tach_ho_ten) > 1:

     ten = tach_ho_ten[-1]

     print("Tên của bạn là:", ten)

else:

     print("Nhập sai định dạng họ tên")

Câu 2: 

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

hoa = s.upper()

print(hoa)

uses crt;

var st:string;

d,i:integer;

begin

clrscr;

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

d:=length(st);

for i:=1 to d do 

  if not(st[i] in ['a'..'z']) and not(st[i] in ['A'..'Z']) then write(st[i]);

readln;

end.

8 tháng 4 2021

program so_sanh;

uses crt;

var a, b: string;

begin

clrscr;

write('nhap xau thu nhat: ');readln(a);

 write('nhap xau thu hai: ');readln(b);

if length(a)<length(b) then write(a) else write(b);

readln 

end.

Uses crt;

Var st1,st2:string;

D1,d2:integer;

Begin

Clrscr;

Write('nhap xau thu 1:'); readln(st1);

Write('nhap xau thu 2:'); readln(st2);

D1:=length(st1);

D2:=length(st2);

If d1<d2 then write(st1)

Else writeln(st2);

Readln;

End.

16 tháng 3 2023

Program Xau;

Uses crt;

Var St: String;

    i: longint;

Begin

        Clrscr;

        Write('Nhap xau: '); Readln(St);

        For i:=1 to length(St) do

                St[i] := Upcase(St[i]);

        Write('St = ',St);

        Readln

End.

25 tháng 7 2021

cau 1:

uses crt;

var a:array[1..100] of integer;

n,i,min: integer;

begin

readln(n);

for i:=1 to n do

readln(a[i]);

min:=a[1];

for i:=2 to n do

if min>a[i] then min=a[i];

writeln(a[i]);

readln;

end.

cau 2:

uses crt;

g:text;

s:string;

const fo='CHUSO.TXT';

begin

assign(g,fo);

rewrite(g);

readln(s);

for i:=1 to length(s) do

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

writeln(g,s);

end.

7 tháng 4 2023

program NhapXau;

var

     Chuoi_A, Chuoi_B : string;

     i : integer;

begin

     write('Nhap xau A: ');

     readln(Chuoi_A);

     writeln('Xau A la: ', Chuoi_A);

     Chuoi_B := '';

     for i := 1 to length(Chuoi_A) do

          Chuoi_B := Chuoi_B + Chuoi_A[i];

     writeln('Xau B la: ', Chuoi_B);

     readln;

end.