Viết chương trình nhập vào một xâu s từ bàn phím và đưa xâu sau khi đã xóa k kí tự bắt đầu từ vị trí n

2 câu trả lời

program xoa_kitu;

uses crt;

var s:string;

      n,k:byte;

begin

       clrscr;

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

       write('Nhap vi tri n: ');  readln(n);

       write('Nhap so ki tu xoa k: ');  readln(k);

       delete(s,n,k);

       write('Xau sau khi xoa la: ',s);

       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++)

if ((st[i]==' ') and (st[i+1]=' ')) st.erase(i,1);

cout<<st;

return 0;

}

Câu hỏi trong lớp Xem thêm