0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-19 21:25:24 +00:00
OI-codes/AcWing/739/739.cpp

23 lines
364 B
C++

#include <iostream>
#include <iomanip>
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;
}