Viết câu lệnh thực hiện công việc sau: -Nhập 2 biến a,b từ bàn phím -ghi biến đó vào tệp 'dulieu.txt', sử dụng biến tệp f1 e cần gấp giúp e với ạ

2 câu trả lời

uses crt;
var a,b : integer;
f1 : text;
begin
write('Nhap a,b :'); readln(a,b);
assign(f1,'dulieu.txt');
rewrite(f1);
write(f1,a,b);
close(f1);
readln
end.

#include <iostream>
#include <fstream>
using namespace std;
int main()
{
    int a,b;
    ofstream out("dulieu.txt");
    cin>>a>>b;
    out<<a<<" "<<b;
    //samon247
    return 0;
}

Câu hỏi trong lớp Xem thêm