c++
cout怎么输出空格?
用制表符\t或者字符串" "都可以:
cout << arr[i] << "\t"; // 或者 cout << arr[i] << " " ;
count << " " << a[i]或者用\t