Skip to content

Commit

Permalink
aceito
Browse files Browse the repository at this point in the history
  • Loading branch information
BhryanS2 committed Jan 4, 2021
1 parent 369eb6e commit 4fe0c78
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions Exercicios/Raízes.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#include <bits/stdc++.h>
using namespace std;

int main() {
int n;
double x;
cin >> n;

for(int i = 0; i < n; i++) {
cin >> x;
cout << fixed << setprecision(4) << (sqrt(x)) << endl;
}
}

0 comments on commit 4fe0c78

Please sign in to comment.