做完啦,看下答案
啊哈~{:10_264:}
0、计算机只认识二进制
1、机器语言
2、编译
3、编译型语言一次编译下次直接使用,解释型语言每次运行都要重新解释一句执行一句
4、能
5、
6、查表
自己思考和动手,
学习
啦啦啦
#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)
为什么window的到第53项就一直显示错误
{:5_102:}
二进制 机械语言编译 吃饭和打火锅{:5_109:} 不能 通过虚拟机 这个忘了 ...
1234
谢谢哈
{:10_257:}{:10_257:}{:10_257:}
1
开始了
111
查看答案
查看参考答案