Thursday, November 25, 2021

Lower Case in C++

 Machine Problem in C++

/*

 * 2.Summative Assessment 2

 * Create a C++ program which converts a given string to

 * lowercase.

 * The output should be like the following:

 * Original  String :

 * I  LOVE  C++  PROGRAMMING!

 * String  in  lowercase :

 * i  love  c++  programming!

 * CCS0007  Computer  Programming  2

 */


 I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me at the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.

My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.




Program Listing

#include <iostream>

#include <cstring>

#include <cctype>


using  namespace  std ;


int  main ()

{

    char  arr[]  = "I  LOVE  C++  PROGRMlMING!";

    cout << "Original String:\n";

    cout << arr << "\n";


    for (int i = 0; arr[i] != '\0'; ++i)

        arr[i] = tolower(arr[i]);


    cout << "String in Lowercase:\n";

    cout << arr << "\n";

    cout  <<  "\n\nCCS0007  Computer  Programming  2"  <<  endl ;

return  0 ;

}



No comments:

Post a Comment