我是C的新手并且一直在玩并为整数创建了一个基本的输入输出程序(见下文)我想知道如何让我的程序从输入的数字中省略字符然后打印没有省略字符的数字,例如,如果我想要省略非素数1234567输入将打印2357.这是我当前的代码:
#include <stdio.h>
int main() {
int number;
// printf() dislpays the formatted output
printf("Enter an integer: ");
// scanf() reads the formatted input and stores them
scanf("%d", &number);
// printf() displays the formatted output
printf("You entered: %d", number);
return 0;
}