Yth961102zxc 发表于 2020-3-31 16:56:33

各位哥哥 为什么我把小甲鱼的代码复制进vs2017编译会出错呀

就是小甲鱼带你学习C的第一讲的作业 我把代码重新打了一遍 报错 复制了一遍也报错。。

人造人 发表于 2020-3-31 16:59:10

贴代码

sunrise085 发表于 2020-3-31 17:10:46

先学会提问。
第一、并不是所有人都看了你所说的第一讲的作业
第二、每个人遇到的错误不可能都一样,你啥也没给,只说报错了,别人怎么知道是什么错误

跪求考研上岸 发表于 2020-3-31 17:55:54

编译器不一样

Yth961102zxc 发表于 2020-3-31 18:31:42

sunrise085 发表于 2020-3-31 17:10
先学会提问。
第一、并不是所有人都看了你所说的第一讲的作业
第二、每个人遇到的错误不可能都一样,你啥 ...

有道理 您说得对 这是代码

#include <io.h>
#include <direct.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#define MAX      256

long total;

int countLines(const char *filename);
void findAllCodes(const char *path);
void findALLFiles(const char *path);

int countLines(const char *filename)
{
      FILE *fp;
      int count = 0;
      int temp;
      
      if ((fp = fopen(filename, "r")) == NULL)
      {
                fprintf(stderr, "Can not open the file:%s\n", filename);
                return 0;
      }
      
      while ((temp = fgetc(fp)) != EOF)
      {
                if (temp == '\n')
                {
                        count++;
                }
      }
      
      fclose(fp);
      
      return count;
}

void findAllCodes(const char *path)
{
      struct _finddata_t fa;
      long handle;
      char thePath, target;
      
      strcpy(thePath, path);
      if((handle = _findfirst(strcat(thePath, "/*.c"), &fa)) != -1L)
      {
                do
                {
                        sprintf(target, "%s/%s", path, fa.name);
                        total += countLines(target);
                }while (_findnext(handle, &fa) == 0);
      }
   
      _findclose(handle);
}

void findALLDirs(const char *path)
{
      struct _finddata_t fa;
      long handle;
      char thePath;
      
      strcpy(thePath, path);
      if((handle = _findfirst(strcat(thePath, "/*"), &fa)) == -1L)
      {
                fprintf(stderr, "The path %s is wrong!\n",path);
                return;
      }
   
      do
      {      
                if (!strcmp(fa.name, ".") || !strcmp(fa.name, ".."))
                        continue;
                  
                if( fa.attrib == _A_SUBDIR)
                {      
                        sprintf(thePath, "%s/%s", path, fa.name);
                        findAllCodes(thePath);
                        findALLDirs(thePath);
                }
      }while (_findnext(handle, &fa) == 0);
   
      _findclose(handle);   
}

int main()
{
      char path = ".";
      
      printf("计算中...\n");
      
      findAllCodes(path);
      findALLDirs(path);
      
      printf("目前你总共写了 %ld 行代码!\n\n", total);
      system("pause");
      
      return 0;
}

Yth961102zxc 发表于 2020-3-31 18:32:16

跪求考研上岸 发表于 2020-3-31 17:55
编译器不一样

原来编译器不同会引发这个问题啊 谢谢啊

Yth961102zxc 发表于 2020-3-31 18:33:17

人造人 发表于 2020-3-31 16:59
贴代码


#include <io.h>
#include <direct.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#define MAX      256

long total;

int countLines(const char *filename);
void findAllCodes(const char *path);
void findALLFiles(const char *path);

int countLines(const char *filename)
{
      FILE *fp;
      int count = 0;
      int temp;
      
      if ((fp = fopen(filename, "r")) == NULL)
      {
                fprintf(stderr, "Can not open the file:%s\n", filename);
                return 0;
      }
      
      while ((temp = fgetc(fp)) != EOF)
      {
                if (temp == '\n')
                {
                        count++;
                }
      }
      
      fclose(fp);
      
      return count;
}

void findAllCodes(const char *path)
{
      struct _finddata_t fa;
      long handle;
      char thePath, target;
      
      strcpy(thePath, path);
      if((handle = _findfirst(strcat(thePath, "/*.c"), &fa)) != -1L)
      {
                do
                {
                        sprintf(target, "%s/%s", path, fa.name);
                        total += countLines(target);
                }while (_findnext(handle, &fa) == 0);
      }
   
      _findclose(handle);
}

void findALLDirs(const char *path)
{
      struct _finddata_t fa;
      long handle;
      char thePath;
      
      strcpy(thePath, path);
      if((handle = _findfirst(strcat(thePath, "/*"), &fa)) == -1L)
      {
                fprintf(stderr, "The path %s is wrong!\n",path);
                return;
      }
   
      do
      {      
                if (!strcmp(fa.name, ".") || !strcmp(fa.name, ".."))
                        continue;
                  
                if( fa.attrib == _A_SUBDIR)
                {      
                        sprintf(thePath, "%s/%s", path, fa.name);
                        findAllCodes(thePath);
                        findALLDirs(thePath);
                }
      }while (_findnext(handle, &fa) == 0);
   
      _findclose(handle);   
}

int main()
{
      char path = ".";
      
      printf("计算中...\n");
      
      findAllCodes(path);
      findALLDirs(path);
      
      printf("目前你总共写了 %ld 行代码!\n\n", total);
      system("pause");
      
      return 0;
}
这是代码 麻烦您啦

Yth961102zxc 发表于 2020-3-31 18:38:21

sunrise085 发表于 2020-3-31 17:10
先学会提问。
第一、并不是所有人都看了你所说的第一讲的作业
第二、每个人遇到的错误不可能都一样,你啥 ...

嗷嗷对 我是新注册的号 好像不让发图片 所以说的不太明白 不好意思啊~

Hello. 发表于 2020-3-31 18:38:43

Yth961102zxc 发表于 2020-3-31 18:33
#include
#include
#include


vs对语法比较严格,新手建议使用dev-c++,或者vc{:10_277:}

人造人 发表于 2020-3-31 18:43:21

Yth961102zxc 发表于 2020-3-31 18:33
#include
#include
#include


你是不是忘了贴报错信息?
也对,我没有说要贴报错信息
^_^

Yth961102zxc 发表于 2020-3-31 18:48:13

人造人 发表于 2020-3-31 18:43
你是不是忘了贴报错信息?
也对,我没有说要贴报错信息
^_^

因为我没办法发图片 所以可能表述不太明白
vs的报告是这么说的
错误        C4996        'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.       

Yth961102zxc 发表于 2020-3-31 18:49:50

Hello. 发表于 2020-3-31 18:38
vs对语法比较严格,新手建议使用dev-c++,或者vc

好的 请问vc的全名叫什么呀

人造人 发表于 2020-3-31 18:51:26

Yth961102zxc 发表于 2020-3-31 18:48
因为我没办法发图片 所以可能表述不太明白
vs的报告是这么说的
错误        C4996        'sprintf': This function o ...

在代码的最上面写上
#define _CRT_SECURE_NO_WARNINGS

Hello. 发表于 2020-3-31 18:52:12

Yth961102zxc 发表于 2020-3-31 18:49
好的 请问vc的全名叫什么呀

VC++6.0

Yth961102zxc 发表于 2020-3-31 18:52:45

Hello. 发表于 2020-3-31 18:52
VC++6.0

谢谢!

人造人 发表于 2020-3-31 18:52:58

Yth961102zxc 发表于 2020-3-31 18:49
好的 请问vc的全名叫什么呀

Visual Studio
Visual C++

Hello. 发表于 2020-3-31 18:53:26

Yth961102zxc 发表于 2020-3-31 18:52
谢谢!

不厚道{:10_247:}

Yth961102zxc 发表于 2020-3-31 18:54:05

人造人 发表于 2020-3-31 18:51
在代码的最上面写上

哇塞! 真的成功了!谢谢您! 这一段的含义是什么呀

人造人 发表于 2020-3-31 18:56:06

Yth961102zxc 发表于 2020-3-31 18:54
哇塞! 真的成功了!谢谢您! 这一段的含义是什么呀

就是告诉vs不要把这个问题当成错误
这个问题指的是使用sprintf函数

Yth961102zxc 发表于 2020-3-31 18:56:30

人造人 发表于 2020-3-31 18:56
就是告诉vs不要把这个问题当成错误
这个问题指的是使用sprintf函数

好的! 非常感谢您!
页: [1] 2
查看完整版本: 各位哥哥 为什么我把小甲鱼的代码复制进vs2017编译会出错呀