Cho tệp DULIEU.DAT chứa giá trị của a,x,n của dãy số S= 1 + x(a + 1 ) + x^2(a + 2) + ....+ x^n(a+n) với S>=10000. Tạo tệp KETQUA.DAT ghi giá trị tổng S với các cặp a,x tương ứng
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='dulieu.dat';
fo='ketqua.dat';
var f1,f2:text;
n,i,s:integer;
a:array[1..100]of integer;
begin
assign(f1,fi); reset(f1);
assign(f2,fo); rewrite(f2);
n:=0;
while not eof(f1) do
begin
n:=n+1;
read(f1,a[n]);
end;
s:=0;
for i:=1 to n do
s:=s+a[i];
writeln(f2,s);
close(f1);
close(f2);
end.
Câu 3:
Program hotrotinhoc_hoc24;
const fi='dulieu.dat';
fo='dtb.dat';
var a,b,c,d: integer;
procedure ip;
begin
assign(f,fi);
reset(f);
readln(f,a,b);
read(f,c,d);
close(f);
end;
procedure out;
begin
assign(f,fo);
rewrite(f);
write(f,(a+b+c+d)/4:1:2);
close(f);
end;
begin
ip;
out;
end.
#include <bits/stdc++.h>
using namespace std;
long long a[10],b[10],i,j;
int main()
{
freopen("input.txt","r",stdin);
freopen("output.txt","w",stdout);
for (i=1; i<=10; i++) cin>>a[i];
for (j=1; j<=10; j++) cin>>b[j];
for (i=1; i<=10; i++)
cout<<a[i]+b[i]<<" ";
return 0;
}
#include <bits/stdc++.h>
using namespace std;
long long a,b;
int main()
{
freopen("dulieu.txt","r",stdout);
freopen("ketqua.txt","w",stdout);
cin>>a>>b;
cout<<a+b;
return 0;
}
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.
Program HOC24;
const fi='DULIEU.DAT';
fo='KETQUA.DAT';
var a,x,n: integer;
s: longint;
function luythua(a,b: integer): longint;
var j,t: longint;
begin
t:=1;
for j:=1 to b do t:=t*a;
luythua:=t;
end;
procedure ip;
begin
assign(f,fi);
reset(f);
read(f,a,x,n);
close(f);
end;
procedure out;
begin
assign(f,fo);
rewrite(f);
s:=1;
for i:=1 to n do
s:=s+luythua(x,i)*(a+i);
write(f,s);
close(f);
end;
begin
ip;
out;
end.