c语言运行出现乱码
本帖最后由 大仙爱吃糖 于 2019-5-9 01:33 编辑c程序在windows环境下编译,运行的时候出现乱码
百度方法未解决,希望各位能帮助一下
代码:带你学c带你飞第一季 第一课的练习
统计当前目录及所有子目录下,C语言源文件的代码总行数
#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 findALLDirs(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("目前你总共写了 %1d 行代码!\n",total);
system("pause");
return 0;
}
本帖最后由 jackz007 于 2019-5-9 01:08 编辑
楼主你不能这么懒,要把你的全部代码都贴出来
根据你贴出来的信息来看,你应该是把 printf() 里面的格式描述符 "%s" 统统写成了 "&s","%ld" 写成了 "&ld" ,也就是说,你把格式描述符的关键符号 "%" 统统写成了 "&" 这是非常要命的问题,必须逐一更正。
再更正你一个错误,你的情况是程序运行出现乱码,而不能描述成"C语言编译出现乱码",首先,编译过程不可能出现乱码,再说,你的乱码是出现在程序运行过程中,与编译程序和编译过程能有什么关系? jackz007 发表于 2019-5-9 00:58
楼主你不能这么懒,要把你的全部代码都贴出来
根据你贴出来的信息来看,你应该是把 printf()...
好的,谢谢指正错误 看一下 C 文件的字符编码, win命令行默认只能输出 GB 系列编码的中文, UTF 等其他编码就会乱码 大C神 发表于 2019-5-9 11:59
看一下 C 文件的字符编码, win命令行默认只能输出 GB 系列编码的中文, UTF 等其他编码就会乱码
好的,改过来了,多谢,已经显示正常了 {:10_275:} 育碧 我当时也出了好多问题,不过都改好了
页:
[1]