Skip to content

Instantly share code, notes, and snippets.

@jinnatul
Created March 13, 2020 16:59
Show Gist options
  • Save jinnatul/c6a9850b02181da7c21f3f690c74f55d to your computer and use it in GitHub Desktop.
Save jinnatul/c6a9850b02181da7c21f3f690c74f55d to your computer and use it in GitHub Desktop.
#include <bits/stdc++.h>
using namespace std;
int main() {
int tc, t = 1;
cin >> tc;
while(tc--) {
double num, ans;
cin >> num;
ans = 0.25 + (4*num*num);
printf("Case %d: %.2lf\n", t++, ans);
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment