Skip to content

Instantly share code, notes, and snippets.

@unvBell
Last active August 29, 2015 14:22
Show Gist options
  • Save unvBell/c603b0638431f0860268 to your computer and use it in GitHub Desktop.
Save unvBell/c603b0638431f0860268 to your computer and use it in GitHub Desktop.
// 入力された文字列のうち、数値だけを出力せよ
// in:S
#include <stdio.h>
int main(void) {
int c;
puts("?");
while((c = getchar()) != EOF) {
if(isdigit(c)) {
putchar(c);
}
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment