GeeksforGeeks Solution For School Domain .Below You Can Find The Solution Of Basic ,Easy ,Medium ,Hard .You Can Also Direct Submit Your Solution to Geeksforgeeks Same Problem .You Need to login then you can submit you answers
Problem :- Remove all characters from an alphanumeric string.
Submit Your Solution :- Click Here
Solution :-
#include <iostream>
#include <cstring>
#include <cstdlib>
using namespace std;
int main()
{
int t;
cin>>t;
while(t--)
{
string str;
int i,j,len;
cin>>str;
len=str.length();
for(i=0;i<len;i++)
{
if(str[i]>=48 && str[i]<=57)
{
cout<<str[i];
}
}
cout<<endl;
}
return 0;
}
Output:-
0 Comments: