0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-16 20:05:26 +00:00
Baoshuo Ren 2021-10-05 17:35:43 +08:00 committed by Baoshuo Ren
parent 54841219e5
commit da8dbeac35
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

21
AcWing/659/659.cpp Normal file
View File

@ -0,0 +1,21 @@
#include <bits/stdc++.h>
using namespace std;
double x;
int main() {
cin >> x;
if (0 <= x && x <= 25) {
cout << "Intervalo [0,25]" << endl;
} else if (25 < x && x <= 50) {
cout << "Intervalo (25,50]" << endl;
} else if (50 < x && x <= 75) {
cout << "Intervalo (50,75]" << endl;
} else if (75 < x && x <= 100) {
cout << "Intervalo (75,100]" << endl;
} else {
cout << "Fora de intervalo" << endl;
}
return 0;
}