Untitled
Anonymous
plain_text
11/06/2022 1:14 PM
228 B
13
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...