satriafu5710

Konversi Huruf Besar / Kecil C++

Jan 29th, 2021
215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.42 KB | None | 0 0
  1. #include<iostream>
  2. #include<string.h>
  3. using namespace std;
  4.  
  5. int main(){
  6.  
  7.     char text[100];
  8.  
  9.     cout << "\t Konversi Huruf Besar ke Kecil / Sebaliknya\n\n";
  10.  
  11.     cout << " Masukkan Text : ";
  12.     cin >> text;
  13.  
  14.     strlwr(text); // untuk konversi ke kecil
  15.     cout << "\n Konversi ke Huruf Kecil : " << text << endl;
  16.  
  17.     strupr(text); // untuk konversi ke besar
  18.     cout << " Konversi ke Huruf Besar : " << text;
  19. }
Advertisement
Add Comment
Please, Sign In to add comment