Rencana Kuliah Latihan 3

Assalamualaikum..
Kali ini saya akan memposting program untuk menghitung jumlah karakter dalam sebuah string, dan berikut adalah kodingannya

#include <iostream>
#include <string.h>

/* run this program using the console pauser or add your own getch, system("pause") or input loop */
using namespace std;
class huruf{
friend istream& operator>>(istream&, huruf&);
friend ostream& operator<<(ostream&, huruf&);
public:
void ubah();
private:
char karakter[100000];
};

void huruf::ubah(){
cout<<strlen(karakter);
};

istream& operator>>(istream& in, huruf& input){
cout<<"Masukkan kalimat : ";
in.getline(input.karakter, sizeof(input.karakter));
};

ostream& operator<<(ostream& out, huruf& output){
cout<<"\n\nJumlah karakter = ";
output.ubah();
};
int main(int argc, char** argv) {
    huruf jalankan;
cin>>jalankan;
cout<<jalankan;
    return 0;
}
Dan berikut adalah hasil runingnya

Share this

Related Posts

Previous
Next Post »