-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreadability.c
79 lines (69 loc) · 1.63 KB
/
readability.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#include <cs50.h>
#include <ctype.h>
#include <math.h>
#include <stdio.h>
#include <string.h>
int count_letters(string text);
int count_words(string text);
int count_sentences(string text);
int main(void)
{
string text = get_string("Text: ");
// Count the number of letters, words, and sentences in the text
double letters = count_letters(text);
double words = count_words(text);
double sentences = count_sentences(text);
// Compute the Coleman-Liau index
// printf("%f\n%f\n%f\n",letters,words,sentences);
double l = letters / words * 100;
double s = sentences / words * 100;
// printf("%f\n%f\n",l,s);
//Coleman-Liau index calculation
double index = 0.0588 * l - 0.296 * s - 15.8;
index = round(index);
// type casting
if (index < 1)
{
printf("Before Grade 1\n");
}
else if (index >= 16)
{
printf("Grade 16+\n");
}
else
printf("Grade %i\n", (int) index);
}
int count_letters(string text)
{
int lcount = 0;
int len = strlen(text);
for (int i = 0; i < len; i++)
{
if (isalpha(text[i]) != 0)
count += 1;
}
return count;
}
int count_words(string text)
{
int count = 0;
int len = strlen(text);
for (int i = 0; i < len; i++)
{
if (isblank(text[i]) != 0)
count += 1;
}
return count + 1;
}
int count_sentences(string text)
{
int count = 0;
int len = strlen(text);
for (int i = 0; i < len; i++)
{
if ((text[i]) == '.' || (text[i]) == '?' || (text[i]) == '!')
// if(ispunct(text[i])!=0)
count += 1;
}
return count;
}