Guest
07-09-2004, 22:35
#include <stdio.h>
/* подсчет цифр, символов-разделителей и прочих символов */
main()
{
int с, i, nwhite, nother;
int ndigit[10];
nwhite = nother = 0;
for (i = 0; i < 10, ++i)
ndigit[i]= 0;
while ((c = getchar()) != EOF)
if (c >='0' && с <= '9')
++ndigit[c – '0'];
else if (c == ' ' || c == '\n' || c == '\t')
++nwhite;
else
++nother;
printf(“цифры =“);
for (i = 0; i < 10; ++i)
printf(“%d”, ndigit[i]);
printf(“, символы-разделители =%d, прочие =%d\n”, nwhite, nother);
}
Что сие означатет " ++ndigit[c – '0'];" ?
Исправлено: hasherfrog, 11:44 8-09-2004
/* подсчет цифр, символов-разделителей и прочих символов */
main()
{
int с, i, nwhite, nother;
int ndigit[10];
nwhite = nother = 0;
for (i = 0; i < 10, ++i)
ndigit[i]= 0;
while ((c = getchar()) != EOF)
if (c >='0' && с <= '9')
++ndigit[c – '0'];
else if (c == ' ' || c == '\n' || c == '\t')
++nwhite;
else
++nother;
printf(“цифры =“);
for (i = 0; i < 10; ++i)
printf(“%d”, ndigit[i]);
printf(“, символы-разделители =%d, прочие =%d\n”, nwhite, nother);
}
Что сие означатет " ++ndigit[c – '0'];" ?
Исправлено: hasherfrog, 11:44 8-09-2004