• 2022-06-16
    下列语句中,哪个正确完成整形变量的声明和赋值
    A: int conut,count=0;
    B: int count=0;
    C: count=0;
    D: int count1=0,count2=1;
  • 举一反三