编写程序实现在一个字符串中查找指定的字符(请用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;i<ch.length-1;i++){//进行判断
if(ch==ch[i+1]){
count++;
}
if(ch!=ch[i+1]){
if(count>maxcount){
maxcount=count;
max=ch;
}
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=亮白色
#include<stdio.h>
int main()
{
int i,index,count;
char a,ch,str[80];
scanf("%c
",&a);
i=0;
index=-1;
count=0;
ch=getchar();
for(i=0;ch!='
';i++){
str=ch;
count++;
ch=getchar();
}
for(i=0;i<count;i++)
if(a==str)
index=i;
if(index!=-1)
printf("index=%d",index);
else
printf("Not Found");
return 0;
}
扩展资料:getchar()用法:
getchar()函数的作用是从计算机终端(一般为键盘)输入一个字符。getchar()函数只能接收一个字符,其函数值就是从输入设备得到的字符。
例:
#include<stdio.h>
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())!='
')
printf("%c",c);
return 0;
}
注:可以利用getchar()函数让程序调试运行结束后等待编程者按下键盘才返回编辑界面,用法:在主函数结尾,return 0;之前加上getchar();
#include<stdio.h>
int main()
{
int i,index,count;
char a,ch,str[80];
scanf("%c
",&a);
i=0;
index=-1;
count=0;
ch=getchar();
for(i=0;ch!='
';i++){
str<i>=ch;
count++;
ch=getchar();
}
for(i=0;i<count;i++)
if(a==str<i>)
index=i;
if(index!=-1)
printf("index=%d",index);
else
printf("Not Found");
return 0;
}
扩展资料:
getchar()用法:
getchar()函数的作用是从计算机终端(一般为键盘)输入一个字符。getchar()函数只能接收一个字符,其函数值就是从输入设备得到的字符。
例:
#include<stdio.h>
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())!='
')
printf("%c",c);
return 0;
}
注:可以利用getchar()函数让程序调试运行结束后等待编程者按下键盘才返回编辑界面,用法:在主函数结尾,return 0;之前加上getchar();
#include<stdio.h>
#include<string.h>
main()
{ char a[1000],ch;
int b[1000],i,j,m,flag;
while(1){
scanf("%c",&ch);
getchar();
gets(a);
flag=0;j=0;
for(i=0;i<strlen(a);i++)
if(a[i]==ch){
b[j]=i;
j++;
flag=1;
}
if(flag){
printf("%d次
",j);
for(m=0;m<j;m++)
printf("%4d",b[m]);
printf("
");
}
else
printf("没出现指定的字符
");
}
}
如图所示,望采纳。。。。。。
通过for循环依次遍历该字符串,如果存在就输出位置,不存在输出不存在该字符。
参考代码:
#include<stdio.h>
#include<string.h>
#define N 100
int main()
{
char a[N]="hello world!",ch;//初始化字符串
int i,len,f=1;
scanf("%c",&ch);//输出查找字符
len=strlen(a);
for(i=0;i<len;i++)//依次遍历字符串,判断是否存在
if(a[i]==ch){//如果存在,输出位置
printf("%d
",i);
f=0;
}
if(f) //不存在输出
printf("字符串中不存在该字符!
");
return 0;
}
/*运行结果:
w
6
*/
/*4.3*/
#include"stdio.h"
int main()
{
/*************************/
char a[1000],ch;
int b[1000],i,j,m;
int flag=0;j=0;
printf("请输入一个字符串:\n");
gets(a);
printf("请输入指定字符:\n");
scanf("%c",&ch);
for(i=0;a[i]!='\0';i++)
{
if(a[i]==ch)
{
b[j]=i;
j++;
flag=1;
}
}
if(flag)
{
printf("%d次\n",j);
for(m=0;m<j;m++)
printf("%4d",b[m]);
}
else
printf("没有出现指定字符\n");
/*************************/
return 0;
}
#include <stdio.h>
int main()
{
char s[]="this is a test!" ;
char ch;
int i;
scanf("%c", &ch );
while( s[i] )
{
if ( s[i]==ch )
{
printf("%c at %d\n", ch, i+1 );
return 0;
}
i++;
}
printf("%c is not in '%s'\n", ch, s );
return -1;
}
输入一个字符串和字符,从字符串查找这个字符,如果有输出已找到,否则输 ...
程序从用户处接收输入。通过printf函数提示用户输入一个字符,并使用scanf函数读取该字符,存储在my_char中。接着,再次使用printf函数提示用户输入一个字符串,并通过gets函数读取该字符串,存储在my_string中。然后,程序进入一个for循环,对my_string中的每个字符进行检查。如果找到与my_char相匹配的字符...
java中想获取一字符串中特定的字符该如何实现
在Java编程中,获取字符串中特定字符的方法有两种。第一种方法是直接使用charAt()函数。例如,字符串str被初始化为"gaganoig",那么通过str.charAt(3)获取到的就是字符'a'。这里,charAt()函数返回的是char类型的数据。第二种方法则是利用substring()函数。同样地,将字符串str设为"gaganoig",通过...
编写程序实现在一个字符串中查找指定的字符(请用c语言作答)_百度知 ...
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++){ str=ch;count++;ch=getchar();} for(i=0;i<count;i++)if(a==str)index=i;if(index!=-1)printf("index=%d",index);else printf...
怎样利用c语言编写一个程序在一个字符串数组中查找一个指定的字符并输出...
include<string> void main(){ char a[20],c; \/\/a[20]为字符串,c为要查找字符 int i,n[5],num = 0,j = 0; \/\/i,j为计数器,n[5]纪录下标,num记录个数 printf("请输入字符串(少于20个字符)\\n");gets(a);printf("请输入要查找字符:");scanf("%c",&c);for(i =...
...VBA代码 现要在一范围内查询某一字符串,看在这个范围内是否存在,如...
在Excel VBA中,我们可以通过编写代码来实现对特定范围内字符串的查找。下面是一个示例代码,该代码定义了一个范围和一个要查找的字符串,然后在指定范围内查找该字符串。如果找到该字符串,代码会执行相应的操作;如果没有找到,则执行另一套操作。这里我们定义了一个名为sss的子程序。首先,我们设置了...
c语言编写一个程序,实现查找一个字符串中的特定字符,并将其删除._百度...
二、操作过程 三、参考程序 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(...
C语言编写程序实现在一个字符串中查找指定字符,并输出指定的字符在字...
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;\/\/记录最大出现次数 ...
...字符串查找某个字符首次出现的位置,若字符串中没有该字符,给出相应...
\/\/寻找字符串中是否存在该字符 { printf("%c出现的首位置为:%d\\n",key,i+1); \/\/找到该字符,打印并跳出循环 break;} if(i==strlen(str))printf("该字符串中没有%c\\n",key); \/\/没有找到该字符,打印”没有“return 0;} ...
如何在一个字符数组中查找一个指定的字符?(c或c++)
n应该是代表循环的次数上限,这里应该是被查找的字符串(字符数组t[50])中的字符个数,所以是50 j是待查找的字符在被查找字符串中的位置,所以是j [3-1]:50 [3-2]:j
编写一个函数在指定的字符串中查找指定字符出现的次数
int count_char(char *str, char ch) { int count = 0; while(*str) if(*str++ == ch) count++; return count; } 这是主要的程序啊! 自己看着加哪啊露露!嘿嘿!