陈邹vscode 发表于 2020-8-11 18:27:27

vscode终端

vscode终端怎么只显示结果?在设置中怎么解决?

zltzlt 发表于 2020-8-11 18:27:40

什么意思?能截个图嘛?

图床地址:https://imgchr.com/

陈邹vscode 发表于 2020-8-11 18:32:18

图片已上传该网址,就是vscode终端变得整洁一些,运行后只出现结果。

陈邹vscode 发表于 2020-8-11 18:33:15

zltzlt 发表于 2020-8-11 18:27
什么意思?能截个图嘛?

图床地址:https://imgchr.com/


图片已上传该网址,就是vscode终端变得整洁一些,运行后只出现结果。

zltzlt 发表于 2020-8-11 18:34:17

陈邹vscode 发表于 2020-8-11 18:32
图片已上传该网址,就是vscode终端变得整洁一些,运行后只出现结果。

发链接过来,我看看是个什么情况

qiuyouzhi 发表于 2020-8-11 18:34:18

陈邹vscode 发表于 2020-8-11 18:33
图片已上传该网址,就是vscode终端变得整洁一些,运行后只出现结果。

噗...你得把上传后的链接发过来呀

陈邹vscode 发表于 2020-8-11 18:38:46

zltzlt 发表于 2020-8-11 18:34
发链接过来,我看看是个什么情况

https://imgchr.com/i/aOr7As

陈邹vscode 发表于 2020-8-11 18:39:22

zltzlt 发表于 2020-8-11 18:34
发链接过来,我看看是个什么情况

https://imgchr.com/i/aOr7As

zltzlt 发表于 2020-8-11 18:41:03

陈邹vscode 发表于 2020-8-11 18:39


这正常呀

陈邹vscode 发表于 2020-8-11 18:42:20

zltzlt 发表于 2020-8-11 18:41
这正常呀

我知道正常,但可不可以只输出结果。

陈邹vscode 发表于 2020-8-11 18:43:22

陈邹vscode 发表于 2020-8-11 18:39


https://imgchr.com/i/aOr7As

zltzlt 发表于 2020-8-11 18:43:58

陈邹vscode 发表于 2020-8-11 18:42
我知道正常,但可不可以只输出结果。

把代码改成:
#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;
}
页: [1]
查看完整版本: vscode终端