#include<stdio.h> int Count_Digit( const int N) { int a=0,b,c=N; if(c<0)c=-c; while(c!=0) { a=c%10; if(a%2!=0)b+=a; c=c/10; } return b; } int main( ) { int N; scanf("%d",&N); printf("%d",Count_Digit(N)); return 0; }
时间: 2024-01-15 15:03:46 浏览: 75
这是一个 C 语言的实现,与我之前给出的 Python 实现类似,也是遍历每一位数字并判断是否为奇数,最后累加奇数的和并返回。下面是这个函数的具体实现:
```c
#include<stdio.h>
int Count_Digit(const int N) {
int a = 0, b = 0, c = N;
if (c < 0) c = -c; // 处理负数的情况
while (c != 0) {
a = c % 10;
if (a % 2 != 0) b += a;
c = c / 10;
}
return b;
}
int main() {
int N;
scanf("%d", &N);
printf("%d", Count_Digit(N));
return 0;
}
```
需要注意的是,这个函数里面有一个变量 b,用来累加奇数的和。在函数开始时,需要将 b 初始化为 0。此外,还要处理输入的整数 N 可能是负数的情况。如果 N 是负数,需要先将其取绝对值再进行遍历和计算。
这个函数的时间复杂度为 O(log N),因为它需要遍历整数的每一位数字。
相关问题
#include <stdio.h> #include <stdlib.h> #include <ctype.h> #define MAX_FILENAME_LEN 256 #define MAX_LINE_LEN 1024 struct CountResult { int word_count; int letter_count; int digit_count; int space_count; int newline_count; int punct_count; int other_count; }; struct CountResult count_chars(const char* filename) { struct CountResult result = { 0, 0, 0, 0, 0, 0, 0 }; FILE* fp; char line[MAX_LINE_LEN]; int c; int i; fopen(filename,"r"); if (fp == NULL) { fprintf(stderr, "Error: cannot open file '%s'\n", filename); exit(1); } while (fgets(line, MAX_LINE_LEN, fp) != NULL) { for (i = 0; line[i] != '\0'; i++) { c = line[i]; if (isalpha(c)) { result.letter_count++; } else if (isdigit(c)) { result.digit_count++; } else if (isspace(c)) { result.space_count++; if (c == '\n') { result.newline_count++; } } else if (ispunct(c)) { result.punct_count++; } else { result.other_count++; } } char* p = line; while (*p != '\0') { while (*p != '\0' && !isalnum(*p)) { p++; } if (*p != '\0') { result.word_count++; while (*p != '\0' && isalnum(*p)) { p++; } } } } fclose(fp); return result; }
这段代码是一个 C 语言程序,用于统计一个文件中的字符、单词、数字、空格、换行符、标点符号和其他字符的数量。函数 `count_chars` 接受一个文件名作为参数,返回一个结构体 `CountResult`,包含上述统计结果。
程序首先定义了结构体 `CountResult`,其中包含了各种要统计的数量。然后定义了一个函数 `count_chars`,该函数的参数是一个字符串,表示要统计的文件名。函数内部定义了一个结构体 `result`,用于保存统计结果。
函数首先尝试以只读方式打开文件,若打开失败则报错并退出程序。然后使用 `fgets` 函数逐行读取文件内容,同时使用循环遍历每个字符,并根据其类型进行统计。
统计字母、数字、空格、换行符和标点符号的数量比较简单,只需要使用 C 标准库中的 `isalpha`、`isdigit`、`isspace`、`ispunct` 函数判断字符类型即可。统计其他字符的数量则可以使用 `else` 分支。
统计单词数量的方法比较巧妙,使用了两个嵌套的 `while` 循环。首先将字符指针 `p` 指向当前行的开头,然后在循环中不断向后移动 `p`,直到找到一个字母或数字字符。此时说明找到了一个单词,将单词计数器加一,并继续向后移动 `p` 直到找到下一个非字母或数字字符。这样就可以统计出该行中所有的单词数量。
最后,函数关闭文件,并将统计结果结构体返回。
可以告诉我接下来这个程序的命令行参数命名规则吗#include <stdio.h> #include <stdlib.h> #include <ctype.h> #define MAX_FILENAME_LEN 256 #define MAX_LINE_LEN 1024 struct CountResult { int word_count; int letter_count; int digit_count; int space_count; int newline_count; int punct_count; int other_count; }; struct CountResult count_chars(const char* filename) { struct CountResult result = { 0, 0, 0, 0, 0, 0, 0 }; FILE* fp; char line[MAX_LINE_LEN]; int c; int i; fopen(filename,"r"); if (fp == NULL) { fprintf(stderr, "Error: cannot open file '%s'\n", filename); exit(1); } while (fgets(line, MAX_LINE_LEN, fp) != NULL) { for (i = 0; line[i] != '\0'; i++) { c = line[i]; if (isalpha(c)) { result.letter_count++; } else if (isdigit(c)) { result.digit_count++; } else if (isspace(c)) { result.space_count++; if (c == '\n') { result.newline_count++; } } else if (ispunct(c)) { result.punct_count++; } else { result.other_count++; } } char* p = line; while (*p != '\0') { while (*p != '\0' && !isalnum(*p)) { p++; } if (*p != '\0') { result.word_count++; while (*p != '\0' && isalnum(*p)) { p++; } } } } fclose(fp); return result; }
这个程序需要接收一个文件名作为参数,用于统计该文件中的字符、单词、数字、空白符、换行符、标点符号和其他字符的数量。在命令行中使用该程序时,需要在程序名后面加上一个文件名参数,例如:
```
./count_chars.exe filename.txt
```
其中,`./count_chars.exe` 是程序名,`filename.txt` 是要统计的文件名。
阅读全文