Untitled
unknown
plain_text
3 years ago
171 B
5
Indexable
#include <iostream>
#include <string>
#include <cmath>
using namespace std;
int main() {
char i;
cin >> i;
if (isdigit(i)) cout << "yes";
else cout << "no";
}Editor is loading...