Bài 14: Kiểu dữ liệu tệp

MP
Xem chi tiết
NT
8 tháng 2 2022 lúc 23:32

#include <bits/stdc++.h>

using namespace std;

long long a,b;

int main()

{

cin>>a>>b;

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

cout<<fixed<<setprecision(2)<<sqrt(a*1.0)<<endl;

cout<<fixed<<setprecision(2)<<sqrt(b*1.0);

return 0;

}

Bình luận (0)