Bài 15: Thao tác với tệp

NS
Xem chi tiết
HN
5 tháng 5 2022 lúc 15:29

C Tệp văn bản

Bình luận (0)
NS
Xem chi tiết
TC
5 tháng 5 2022 lúc 15:22

C

Bình luận (0)
KL
5 tháng 5 2022 lúc 15:32

B

Bình luận (0)
NS
Xem chi tiết
KL
5 tháng 5 2022 lúc 15:35

D

Bình luận (0)
ML
28 tháng 4 2022 lúc 14:11

Program HOC24;

var n: byte;

f: text;

begin

assign(f,'C:\Baitap.TXT');

reset(f);

readln(f,n);

write('Gia tri vua doc vao tep la: ',n);

close(f);

readln

end.

Bình luận (0)
VH
Xem chi tiết
TD
Xem chi tiết
VT
Xem chi tiết
NT
12 tháng 4 2022 lúc 7:53

const fi='vanban.inp'

fo='vanban.out'

var f1,f2:text;

dem,i:integer;

a:array[1..1000]of string;

begin

assign(f1,fi); reset(f1);

assign(f2,fo); rewrite(f2);

dem:=0;

while not eof(f1) do 

begin

inc(dem);

readln(f1,a[dem]);

end;

writeln(f2,dem);

close(f1);

close(f2);

end.

Bình luận (0)
YH
Xem chi tiết
NT
11 tháng 4 2022 lúc 18:49

uses crt;

const fi='baitap.txt'

var f1:text;

a,b,c,d:array[1..100]of real;

i,n:integer;

begin

clrscr;

assign(f1,fi); reset(f1);

n:=0;

while not eof(f1) do 

begin

n:=n+1;

readln(f1,a[n],b[n],c[n],d[n]);

end;

for i:=1 to n do 

  writeln(sqrt(sqr(a[i]-c[i])+sqr(b[i]-d[i])):4:3);

close(f1);

readln;

end.

Bình luận (0)
NT
10 tháng 4 2022 lúc 19:05

Bài 1:

#include <bits/stdc++.h>

using namespace std;

long long a[1000],i,n,t,dem;

int main()

{

cin>>n;

for (i=1; i<=n; i++) cin>>a[i];

for (i=1; i<=n; i++)

cout<<a[i]<<" ";

cout<<endl;

t=0;

for (i=1; i<=n; i++)

if (a[i]%2==0) t+=a[i];

cout<<t<<endl;

dem=0;

for (i=1; i<=n; i++)

if (a[i]%3==0) dem++;

cout<<dem;

}

Bình luận (0)
NT
10 tháng 4 2022 lúc 18:24

const fa='dulieu.inp'

fb='kq.out'

fc='ketqua.out'

var f1,f2,f3:text;

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

i,n,t1,t2,dem:integer;

begin

assign(f1,fa); reset(f1);

assign(f2,fb); rewrite(f2);

assign(f3,fc); rewrite(f3);

readln(f1,n);

for i:=1 to n do read(f1,a[i]);

t1:=0;

for i:=1 to n do 

  t1:=t1+a[i];

writeln(f2,t1);

dem:=0;

t2:=0;

for i:=1 to n do 

  if a[i] mod 2=0 then 

begin

dem:=dem+1;

t2:=t2+a[i];

end;

writeln(f3,t2,' ',dem);

close(f1);

close(f2);

close(f3);

end.

Bình luận (0)