Tính CV, S của hình chữ nhật với chiêu dài a, chiều rộng b được lưu trong tệp 'DULIEU.DAT', kết quả CV, S được lưu vào tệp 'KETQUA.DAT'.

1 câu trả lời

#include <iostream>
#include <fstream>
using namespace std;
int main()
{
    int a,b;
    ifstream fileInput("C:\\Users\\hao20\\Desktop\\input.txt");
    ofstream fileOutput("C:\\Users\\hao20\\Desktop\\output.txt");
    fileInput>>a>>b;
    fileOutput<<"Chu vi: "<<a*2+b*2<<"\nDien tich: "<<a*b;
    fileInput.close();
    fileOutput.close();
    //samon247
    return 0;
}

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