我的第二个程序

#define _CRT_SECURE_NO_WARNINGS 1 #include<stdio.h>

int main() { int a = 10; scanf("%d", &a); printf("%d\n", a); return 0; } //数据的输入和输出实现