> 백엔드 개발 > C++ > 문자열 변환 함수를 사용하지 않고 대문자를 소문자로 변환하는 C 프로그램을 작성하세요.

문자열 변환 함수를 사용하지 않고 대문자를 소문자로 변환하는 C 프로그램을 작성하세요.

王林
풀어 주다: 2023-08-29 14:45:06
앞으로
1411명이 탐색했습니다.

문자열 변환 함수를 사용하지 않고 대문자를 소문자로 변환하는 C 프로그램을 작성하세요.

在了解如何在不使用字符串转换函数的情况下将大写字母转换为小写字母之前,让我们来看一下使用转换函数将大写字母转换为小写字母的程序,然后您将清楚我们在程序中所做的事情:

示例

#include <stdio.h>
#include <string.h>
int main(){
   char string[50];
   printf("enter a string to convert to lower case</p><p>");
   gets(string); /reading the string
   printf("The string in lower case: %s</p><p>", strlwr(string)); //strlwr converts all upper    to
   lower
   return 0;
}
로그인 후 복사

输出

enter a string to convert to lower case
CProgramming LangUage
The string in lower case: cprogramming language
로그인 후 복사

现在让我们看看不使用预定义函数将大写转换为小写的程序 -

示例

#include<stdio.h>
void main(){
   //Declaring variable for For loop (to read each position of alphabet) and string//
   int i;
   char string[40];
   //Reading string//
   printf("Enter the string : ");
   gets(string);
   //For loop to read each alphabet//
   for(i=0;string[i]!=&#39;\0&#39;;i++){
      if(string[i]>=65&&string[i]<=90){
         string[i]=string[i]+32;
      }
   }
   printf("The converted lower case string is : ");
   puts(string);
}
로그인 후 복사

输出

Enter the string : TUTORIALSPOINT
The converted lower case string is : tutorialspoint
로그인 후 복사

위 내용은 문자열 변환 함수를 사용하지 않고 대문자를 소문자로 변환하는 C 프로그램을 작성하세요.의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:tutorialspoint.com
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
최신 이슈
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿