(C语言编程)输入一个英文句子,将每个英文单词的头字母变为大写,单词之间用空格隔开
程序已在dev-c++下编译确认:/*提取用空格分隔的字符串中的单词,并改单词首字母为大写*/
#include<stdio.h>
int partition(char *s1,char *s2,int pos)
{
int i,j;
i=pos;
while(s1[i]==' ')
i++;
if(s1[i]!='\0')
{
j=0;
s2[j]='\0';
s2[0]=toupper(s2[0]);
return i;
char string[256];
char partition_string[20];
int position;
int k;
printf("\nPlease input a string:");
printf("\n");
system("pause");
return 0;
}
简洁的语言
C语言包含的各种控制语句仅有9种,关键字也只有32个,程序的编写要求不严格且以小写字母为主,对许多不必要的部分进行了精简。实际上,语句构成与硬件有关联的较少,且C语言本身不提供与硬件相关的输入输出、文件管理等功能,如需此类功能,需要通过配合编译系统所支持的各类库进行编程,故c语言拥有非常简洁的编译系统。
以上内容参考:百度百科-c语言
#include<stdio.h>
#include<stdlib.h>
#include<ctype.h>
int partition(char *s1,char *s2,int pos)
{
int i,j;
i=pos;
while(s1[i]==' ')
i++;
if(s1[i]!='\0')
主要优势:
C语言是一门面向过程的、抽象化的通用程序设计语言,广泛应用于底层开发。C语言能以简易的方式编译、处理低级存储器。C语言是仅产生少量的机器语言以及不需要任何运行环境支持便能运行的高效率程序设计语言。
尽管C语言提供了许多低级处理的功能,但仍然保持着跨平台的特性,以一个标准规格写出的C语言程序可在包括类似嵌入式处理器以及超级计算机等作业平台的许多计算机平台上进行编译。
2013-10-10
/*提取用空格分隔的字符串中的单词,并改单词首字母为大写*/
#include<stdio.h>
#include<stdlib.h>
#include<ctype.h>
int partition(char *s1,char *s2,int pos)
{
int i,j;
i=pos;
while(s1[i]==' ')
i++;
if(s1[i]!='\\0')
{
j=0;
while(s1[i]!='\\0'&&s1[i]!=' ')
{
s2[j]=s1[i];
i++;
j++;
}
s2[j]='\\0';
s2[0]=toupper(s2[0]);
return i;
}
else
return -1;
}
int main()
{
char string[256];
char partition_string[20];
int position;
int k;
printf("\
Please input a string:");
gets(string);
position=0;
printf("\
The result:\
");
k=0;
while((position=partition(string,partition_string,position))!=-1)
{
k++;
printf("%s ",partition_string);
}
printf("\
");
system("pause");
return 0;
}
2013-10-10