#2175. C++-编译-scanf中,赋值对象忘记加&(取地址符)
C++-编译-scanf中,赋值对象忘记加&(取地址符)
Background
Description
scanf中,赋值对象忘记加&(取地址符)
int a;
scanf("%d",a); //错误的
scanf("%d,&a); //改正后
Format
Input
Output
Samples
Limitation
1s, 1024KiB for each test case.