Mở tệp HOCSINH.DAT, đọc 4 số a,b,c,d. Tính tổng 4 số đó và in ra màn hình 10/08/2021 Bởi Jade Mở tệp HOCSINH.DAT, đọc 4 số a,b,c,d. Tính tổng 4 số đó và in ra màn hình
#include <iostream>#include <fstream>using namespace std;int main(){ int a,b,c,d; ifstream fileInput(“HOCSINH.DAT”); fileInput>>a>>b>>c>>d; fileInput.close(); cout<<a+b+c+d; //samon247 return 0;} Bình luận
uses crt;var a,b,c,d: integer;beginassign(input,’HOCSINH.DAT’);assign(output,’HOCSINH.OUT’);reset(input); rewrite(output);read(input,a,b,c,d);close(input);write(output,a+b+c+d);close(output);readlnend. Bình luận
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
int a,b,c,d;
ifstream fileInput(“HOCSINH.DAT”);
fileInput>>a>>b>>c>>d;
fileInput.close();
cout<<a+b+c+d;
//samon247
return 0;
}
uses crt;
var a,b,c,d: integer;
begin
assign(input,’HOCSINH.DAT’);
assign(output,’HOCSINH.OUT’);
reset(input); rewrite(output);
read(input,a,b,c,d);
close(input);
write(output,a+b+c+d);
close(output);
readln
end.