数组
#include <stdio.h>
int main (void)
{
const int number = 10;
int x;
int count [number];
int i;
for (i = 0; i < number; i++) {...
Read More