📅  最后修改于: 2022-03-11 14:56:07.740000             🧑  作者: Mango
#include
int main() {
// using scanf()
int user_input;
printf("Please enter a number: ");
scanf("%d", &user_input);
printf("You entered: %d", user_input);
return 0;
}