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