Day3整形输入

Day3整形输入
#include<stdio.h>int main(){int a;//通过键盘输入赋值//&运算符,表示取地址运算符scanf("%d",&a);printf("%d\n",a);return 0;
}