Тема: Потрібна допомого
хто може написати коментарі до коду програми?
Дуже срочно потрібно
#include <iostream>
#include <stdio.h>
#include <string.h>
#include <cstdlib>
#include <conio.h>
using namespace std;
int color = system ("color F0");
int main()
{
setlocale(LC_ALL, "Rus");
char buf[100], temp_buf[100], name[50],
*temp, *ss;
int a = 0, cnt = 0, thr_wrd_len, len;
memset(buf, 0, 100);
cout << "Введiть Прiзвище, Iм'я та по-Батьковi\n";
gets(buf);
temp = buf;
while (*temp) {
if (*temp == 'a' || *temp == 'A')
a++;
temp++;
}
memcpy(temp_buf, buf, 100);
memset(name, 0, 50);
ss = strtok(temp_buf, " ");
do {
ss = strtok(NULL, " ");
cnt++;
if (cnt == 1)
memcpy(name, ss, strlen(ss));
if (ss && cnt == 2)
thr_wrd_len = strlen(ss);
} while (ss);
len = strlen(buf);
cout << "\nРозмiр рядка: "<<len<<"\nБукв 'a': "<<a<<"\nIм'я: "<<name<<"\nKiлькiсть лiтер у третьому словi: "<<thr_wrd_len;
_getch();
return 0;
}