本文目录一览:
- 1、c语言编写一个程序,实现查找一个字符串中的特定字符,并将其删除.
- 2、C语言如何取一串字符串中的某个字符
- 3、编写程序实现在一个字符串中查找指定的字符(请用c语言作答)
- 4、C语言中怎么查找字符串数组中的某个字符?
- 5、C语言实现在一个字符串中查找指定的字符,并输出指定字符在字符串中出现的次数和位置
c语言编写一个程序,实现查找一个字符串中的特定字符,并将其删除.
一、算法描述
逐个比较字符串source中的字符,若当前i位置的字符等于待删除字符ch,则i+1..len-1之间的子串整体前移;如此反复,直到所有待删除字符都找到并被删除为止。
二、操作过程
三、参考程序
#include stdio.h
#include string.h
/* 移除字符串source中的所有ch字符 */
void remove(char *source, char ch);
void main()
{
char source[1000];
char ch;
printf("请输入一个字符串:");
gets(source);
printf("请输入待删除字符:");
ch = getchar();
remove(source, ch);
printf("新的字符串:");
puts(source);
}
/* 移除字符串source中的所有ch字符 */
void remove(char *source, char ch)
{
int i, j;
int len = strlen(source);
for(i=0; source[i]!='\0'; i++)
{
if(source[i] == ch)
{
for(j=i+1; source[j]!='\0'; j++)
{
source[j-1] = source[j];
}
source[j-1] = '\0';
}
}
}
四、运行测试
请输入一个字符串:How are you?
请输入待删除字符:o
新的字符串:Hw are yu?
C语言如何取一串字符串中的某个字符
C中的字符串就是一个字符数组。
如:
char s[10]="wo shi SB";
char c;
取最左边的字符,就是c=s[0];
编写程序实现在一个字符串中查找指定的字符(请用c语言作答)
#includelt;stdio.hgt;
int main()
{
int i,index,count;
char a,ch,str[80];
scanf("%c\n",a);
i=0;
index=-1;
count=0;
ch=getchar();
for(i=0;ch!='\n';i++){
stri=ch;
count++;
ch=getchar();
}
for(i=0;ilt;count;i++)
if(a==stri)
index=i;
if(index!=-1)
printf("index=%d",index);
else
printf("Not Found");
return 0;
}
扩展资料:
getchar()用法:
getchar()函数的作用是从计算机终端(一般为键盘)输入一个字符。getchar()函数只能接收一个字符,其函数值就是从输入设备得到的字符。
例:
#includelt;stdio.hgt;
int main(void)
{
int c;
/*Note that getchar reads from stdin and
is line buffered;this means it will
not return until you press ENTER.*/
while((c=getchar())!='\n')
printf("%c",c);
return 0;
}
注:可以利用getchar()函数让程序调试运行结束后等待编程者按下键盘才返回编辑界面,用法:在主函数结尾,return 0;之前加上getchar();
C语言中怎么查找字符串数组中的某个字符?
错误在于你判断了第一个非@字符时就已经输出没有字符@退出循环了所以不会检测@了。改成下面就行了:#include stdio.h
#include string.h
int main()
{
char sh[100],n=0;
gets(sh);
for(int i=0;sh[i];i++)
if(sh[i]=='@')
n++;
if(n==0)
printf("没有字符 @\n");
else
printf("有字符 @\n");
}
C语言实现在一个字符串中查找指定的字符,并输出指定字符在字符串中出现的次数和位置
package com.string.to;
import java.util.Arrays;
import java.util.Scanner;
public class JudeCount{
public static void main(String[]args){
System.out.println("请输入你要判断的字符串:");
Scanner s=new Scanner(System.in);
String str=s.nextLine();
char[]ch=str.toCharArray();
Arrays.sort(ch);//对数组排序
char max='a';//记录出现次数最多元素
int maxcount=0;//记录最大出现次数
int count=1;//中间传值参数判断当前元素出现次数
for(int i=0;ilt;ch.length-1;i++){//进行判断
if(chi==ch[i+1]){
count++;
}
if(chi!=ch[i+1]){
if(countgt;maxcount){
maxcount=count;
max=chi;
}
count=1;
}
}
System.out.println("出现最多的元素是:"+max+"次数为:"+maxcount);
}
}
扩展资料:
system函数用法:
用法:intsystem(char*command);
程序例:
#include<stdlib.h>
#include<stdio.h>
intmain(void)
{
printf("AbouttospawnandrunaDOScommand\n");
system("dir");
return0;
}
又如:system("pause")可以实现冻结屏幕,便于观察程序的执行结果;system("CLS")可以实现清屏操作。而调用color函数可以改变控制台的前景色和背景,具体参数在下面说明。
例如,用system("color0A");其中color后面的0是背景色代号,A是前景色代号。各颜色代码如下:
0=黑色1=蓝色2=绿色3=湖蓝色4=红色5=紫色6=黄色7=白色8=灰色9=淡蓝色A=淡绿色B=淡浅绿色C=淡红色D=淡紫色E=淡黄色F=亮白色
(注意:MicrosoftVisualC++6.0支持system)
颜色属性由两个十六进制数字指定--第一个对应于背景,第二个对应于前景。每个数字
可以为以下任何值:
0=黑色8=灰色
1=蓝色9=淡蓝色
2=绿色A=淡绿色
3=浅绿色B=淡浅绿色
4=红色C=淡红色
5=紫色D=淡紫色
6=黄色E=淡黄色
7=白色F=亮白色