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

H24
Xem chi tiết
ML
17 tháng 3 2023 lúc 22:58

Program HOC24;

var f: text;

i,n: integer;

s: longint;

begin

assign(f,'Ketqua.OUT');

rewrite(f);

write('Nhap N: '); readln(n);

s:=1;

for i:=1 to n do s:=s*i;

write(f,s);

close(f);

readln

end.

Bình luận (0)
FC
Xem chi tiết
HD
Xem chi tiết
NT
Xem chi tiết
NT
28 tháng 2 2023 lúc 22:41

uses crt;

const fi='baitap.txt'

var f1:text;

x,y:integer;

begin

clrscr;

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

readln(f1,x,y);

writeln(sqrt(x*x+y*y):4:2);

close(f1);

readln;

end.

Bình luận (0)
H24
Xem chi tiết
NT
10 tháng 2 2023 lúc 9:15

uses crt;

const fi='songuyen.text'

var f1:text;

a,b:integer;

begin

clrscr;

readln(a,b);

assign(f1,fi);rewrite(f1);

writeln(f1,a,' ',b);

close(f1);

readln;

end.

Bình luận (0)
H24
Xem chi tiết
HC
Xem chi tiết
NT
12 tháng 5 2022 lúc 7:46

uses crt;

const fi='dulieu.txt'

var f1:text;

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

t:real;

i,n:integer;

begin

clrscr;

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

readln(f1,n);

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

t:=0;

for i:=1 to n do t:=t+a[i];

writeln(t);

close(f1);

readln;

end.

Bình luận (0)
HN
Xem chi tiết
NT
10 tháng 5 2022 lúc 23:17

#include <bits/stdc++.h>

using namespace std;

long long a[1000],n,i,nn;

int main()

{

freopen("dulieuvao.txt","r",stdin);

freopen("dulieura.txt","w",stdout);

cin>>n;

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

nn=a[1];

for (i=2; i<=n; i++) nn=min(nn,a[i]);

cout<<nn;

return 0;

}

Bình luận (0)