Breaking News
Loading...
Jumat, 06 Mei 2016

Mengubah Huruf

Mengubah Huruf Besar Ke Kecil ;

#include <stdio.h>
#include <ctype.h>
#include <iostream>
#include <conio.h>
using namespace std;
int main ()
{
  int i=0;
  char nama[100];
  char c;
  cout<<"Masukkan Nama [huruf balok] = "; gets(nama);
  getch();
  cout<<"\nNamamu versi huruf kecil = ";
  while (nama[i])
   {
   c=nama[i];
   if (isupper(c)) c=tolower(c);
   putchar (c);
   i++;
   }
getch();
}

Outpunya :

0 komentar:

Posting Komentar

Copyright © 2014 My Blog My Adventure All Right Reserved