Cho tệp bài tập .txt chứa 1 xâu bất kì không quá 100 kí tự. viết chương trình đọc dữ liệu từ tệp bài tập.txt
Kiểm tra xem nếu là chữ số thì ghi ra màn hình, các kí tự còn lại ghi vào tệp.txt
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.
const fi='kt.txt';
fo='kq.out';
var f1,f2:text;
s:string;
i,dem,d:integer;
begin
assign(f1,fi); reset(f1);
assign(f2,fo); rewrite(f2);
readln(f1,s);
vt:=pos('anh',s);
while vt<>0 do
begin
delete(s,vt,3);
insert(s,vt,'em');
vt:=pos('anh',s);
end;
writeln(f2,s);
close(f1);
close(f2);
end.
#include <bits/stdc++.h>
using namespace std;
string st;
int d,i,dem;
int main()
{
freopen("xau.inp","r",stdin);
freopen("xau.out","w",stdout);
cin>>st;
d=st.length();
dem=0;
for (i=0; i<=d-1; i++)
if (st[i]=='a') dem++;
cout<<dem;
return 0;
}
Program HOC24;
const fi='baitap.txt';
fo='tep.txt';
var s: string[100];
f: text;
procedure ip;
begin
assign(f,fi);
reset(f);
read(f,s);
close(f);
end;
procedure out;
begin
assign(f,fo);
rewrite(f);
for i:=1 to length(s) do if not(s[i] in ['0'..'9']) then write(f,s[i]);
close(f);
end;
begin
ip;
for i:=1 to n do if s[i] in ['0'..'9'] then write(s[i]);
out;
readln
end.