diff --git a/AcWing/739/739.cpp b/AcWing/739/739.cpp new file mode 100644 index 00000000..6f03ef02 --- /dev/null +++ b/AcWing/739/739.cpp @@ -0,0 +1,22 @@ +#include +#include + +using std::cin; +using std::cout; +const char endl = '\n'; + +double x; + +int main() { + std::ios::sync_with_stdio(false); + + for (int i = 0; i < 100; i++) { + cin >> x; + + if (x <= 10) { + cout << "A[" << i << "] = " << std::fixed << std::setprecision(1) << x << endl; + } + } + + return 0; +}