1-100-100/1

1-100-100 计划,每天1小时,写100行代码,写100天,就这样。

/1

不知道为什么输出 'wrong -_-' , 改天再看吧。

#include 
#include 
#include 

using namespace std;
#define MAX 10
int main(int argc, char **agrv)
{
    // char *fgets(char *str, int n, FILE *stream);
    char buf[MAX] = "";
    char answer[MAX] = "";
    // const char* answer = "friday";
    strncpy(answer,"friday",MAX);
    cout << "Enter a string: ";
    // read from standard input
    if(fgets(buf,MAX,stdin) != NULL)
    {
        cout << "you enter: " << buf << endl;
        cout << "answer: " << answer << endl;
    }

    // int strncmp(const char *str1, const char *str2, size_t n) 把 str1 和 str2 进行比较,最多比较前 n 个字符。
    int ret = strncmp(buf, answer, MAX);
    if(ret == 0)
    {
        printf("Bingo ^_^\n");
    }
    else
    {
        printf("Wrong -_-\n");
    }
    
    return 0;
}

你可能感兴趣的:(随笔,随心编,c++,算法,开发语言)