我的代码有什么问题? CS50 Pset2:可读性

时间:2020-08-06 09:31:28

标签: c logic cs50 readability

1-我不知道我的代码有什么问题,这是##帮助## 可读性 CS50 pset2。 2-问题似乎出在浮动等级(琴弦等级)功能上。 3-我是一个初学者,这是我第二次使用C进行编码,因此,如果我错过了重要的事情,请告诉我,或者如果您有任何使我的代码看起来更好的提示,谢谢!

   //Libraries
    #include <cs50.h>
    #include <ctype.h>
    #include <stdio.h>
    #include <string.h>
    #include <math.h>
    
    //Functions
    int count_letters(string letter);
    int count_words(string word);
    int count_sentences(string sentence);
    float grade(string grade);
    
    int main(void)
    {
        string par = get_string("text: ");
    }
    
    
    int count_letters(string letter)
    {
        int letters = 0;
        for (int i = 0, n = strlen(letter); i < n; i++)
            {
                 if (isalpha(letter[i]))
                      letters++;
            } 
        return letters;
    }
    
    
    int count_words(string word)
    {
        int words = 1;
        int spaces = 0;
        int nword;
        nword = strlen(word);
        for (int i = 0; i < nword; i++)
            {
                 if (isspace(word[i]))
                      spaces++;
                      words = spaces + 1;
            }
        return words;
    }
    
    
    int count_sentences(string sentence)
    {
        int sentences = 0;
        int nsentence;
        nsentence = strlen(sentence);
        for (int i = 0; i < nsentence; i++)
            {
                 if (sentence[i] == '.' || sentence[i] == '!' || sentence[i] == '?')
                      sentences++;
            }
        return sentences;
    }
    
    
    float grade(string grade)
    {
        //here comes my problem. variables like letters, words, and sentences are "undeclared identifier"
     float x = 0.0588 * (100 * letters / words) - 0.296 * (100 * sentences / words) - 15.8;
                 if (x < 16 && x >= 0)
                    {
                      printf("Grade %i\n", (int) round(x));
                    }
                 else if (x >= 16)
                    {
                      printf("Grade 16+\n");
                    }
                 else
                    {
                      printf("Before Grade 1");
                    }
    }               

1 个答案:

答案 0 :(得分:0)

编译器正在确切地告诉您问题出在哪里-您尚未在letters函数中声明wordssentencesgrade

其他函数中这些变量的声明对于这些函数 local -在grade函数中不可见。

不过,您还有两个更大的问题。一方面,没有任何函数在任何地方被调用-main读取一个字符串,然后立即退出而无需执行其他任何操作。另外,grade无法知道letterswordssentences中应该包含什么值。

您可能想做的是从grade内部调用计数函数,如下所示:

float grade( string s )
{
  int letters = count_letters( s );
  int words = count_words( s );
  int sentences = count_sentences( s );

  float x = ...;
  ...
}

,然后以{p> 1的身份从grade呼叫main

int main( void )
{
  string par = get_string( "Text: " );
  grade( par );
}

或者,您可以从main调用每个计数函数,并将结果作为 arguments 传递给grade

int main( void )
{
  string par = get_string( "Text: " );

  int letters = count_letters( par );
  int words = count_words( par );
  int sentences = count_sentences( par );

  grade( letters, words, sentences );
}

在这种情况下,grade的声明和定义都应该

float grade( int, int, int ); // declaration

float grade( int letters, int words, int sentences ) // definition
{                                                    // since they are declared as arguments,
  float x = ...;                                     // there's no need to declare them in the body of the function
}

现在,这是一个问题-您打算让任何人在x退出后使用grade的值吗?如果是这样,那么您需要添加一个

return x;

grade的末尾。

如果没有,则在声明和定义中将函数的返回类型从float更改为void

void grade( string ); 

void grade( string s ) { ... } // definition