6666
#include <stdio.h>
#include <unistd.h>
#include <dirent.h>
#include <string.h>
#include <stdlib.h>
#include <sys/stat.h>
#define MAX 256
long total;
int countLines(const char *filename);
int isCode(const char *filename);
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;
}
int isCode(const char *filename)
{
int length;
length = strlen(filename);
if (!strcmp(filename + (length - 2), ".c"))
{
return 1;
}
else
{
return 0;
}
}
void findAllDirs(const char *path)
{
DIR *dp;
struct dirent *entry;
struct stat statbuf;
if ((dp = opendir(path)) == NULL)
{
fprintf(stderr, "The path %s is wrong!\n", path);
return;
}
chdir(path);
while ((entry = readdir(dp)) != NULL)
{
lstat(entry->d_name, &statbuf);
if (!strcmp(".", entry->d_name) || !strcmp("..", entry->d_name))
continue;
if (S_ISDIR(statbuf.st_mode))
{
findAllDirs(entry->d_name);
}
else
{
if (isCode(entry->d_name))
{
total += countLines(entry->d_name);
}
}
}
chdir("..");
closedir(dp);
}
int main()
{
char path = ".";
printf("计算中...\n");
findAllDirs(path);
printf("目前你总共写了 %ld 行代码!\n\n", total);
return 0;
}
查看参考答案
11
看一眼
来对对答案
111
1
完成!
1.计算机只能识别二进制
2.机器语言,机器码
3.编译效率更高且泛用性强
4.可以
5.将代码转换成一种方式的东西,然后用机器翻译实现
6.每一段符号对应一个字母从而翻译出来
7.亲们陈迪认识发动进攻
1
1
RE: S1E2:第一个程序 | 课后测试题及答案 [修改]
1
cpu只能执行0和1组成的代码
C:\Users\33365\Pictures\Screenshots
为什么运行之后没有像你好世界一样弹出窗口,而是第一行代码标红,复制代码也是这样
看看
1
0.计算机只能理解二进制0和1,没有自主识别能力。
1.机器语言
2.编译
3.程序执行前的翻译方式不同
4.不能
5.中间代码+平台专属解释器。牺牲效率换取执行效率和跨平台便利性。
6.点划信号的时间编码规则实现信息传输。
7.qinmen
chend
irenc
hifan
shif
adoag
jingo
ng
11