C 语言实例 - 使用引用循环替换数值 a、b、c 三个变量,通过引用按顺序循环替换他们的值。 实例 #includestdio.h void cyclicSwap(int *a,int *b,int *c); int main(){ int a, b, c; printf("输入 a, b 和 c 的值...
C 语言实例 - 判断最大值 通过用户输入指定的数值,来判断最大值。 实例 - 判断最大值 #include stdio.h#include stdlib.h int main(){ int i, num; float *data; printf("输入元素个数(1 ~ 100): "); scanf("%d",...
C 语言实例 - 删除字符串中的特殊字符 删除字符串中的除字母外的字符。 实例 #includestdio.h int main(){ char line[150]; int i, j; printf("输入一个字符串: "); fgets(line, (sizeof line / sizeof line[0]), std...
C 语言实例 - 连接字符串 使用 strcat() 连接两个字符串。 实例 #include stdio.hint main(){ char s1[100], s2[100], i, j; printf("输入第一个字符串: "); scanf("%s", s1); printf("输入第二个字符串: "); scanf("%s...
C 语言实例 - 计算字符串长度 计算字符串长度。 实例 - 使用 strlen() #include stdio.h#include string.h int main(){ char s[1000]; int len; printf("输入字符串: "); scanf("%s", s); len = strlen(s); printf("字符串长度...
C 语言实例 - 查找字符在字符串中出现的次数 查找字符在字符串中的起始位置(索引值从 0 开始)。 实例 #include stdio.h int main(){ char str[1000], ch; int i, frequency = 0; printf("输入字符串: "); fget...
C 语言实例 - 字符串中各种字符计算 计算字符串中的元音、辅音、数字、空白符。 实例 #include stdio.h int main(){ char line[150]; int i, vowels, consonants, digits, spaces; vowels = consonants = digits = space...
C 语言实例 - 字符串复制 将一个变量的字符串复制到另外一个变量中。 实例 - 使用 strcpy() #include stdio.h#include string.h int main(){ char src[40]; char dest[100]; memset(dest, '\0', sizeof(dest)); strcpy(src,...
C 语言实例 - 字符串排序 按字典顺序排序。 实例 #includestdio.h#include string.h int main(){ int i, j; char str[10][50], temp[50]; printf("输入10个单词:\n"); for(i=0; i10; ++i) { scanf("%s[^\n]",str[i]); } for(i=0; i9;...
C 语言实例 - 使用结构体(struct) 使用结构体(struct)存储学生信息。 实例 #include stdio.hstruct student{ char name[50]; int roll; float marks;} s; int main(){ printf("输入信息:\n"); printf("名字: "); scanf(...