Sistem Login dengan Fungsi strcmp() C++

Share tugas praktikum pemrograman terstruktur dengan menggunakan Fungsi strcmp(), dimana fungsinya untuk membandingkan string satu dengan string kedua.

[codesyntax lang=”cpp” lines=”normal”]

#include<iostream>
using namespace std;
int main()
{
int gool;
char h[10],hh[10]="ilkom2014",ye[50];
cout<<"username(ex:ichwan066) : "; cin.getline(ye,50);
cout<<"Password : "; cin.getline(h,10);
gool=strcmp(h,hh);
if (gool==0){
cout<<"Selamat Anda telah Loggin :p";}
else {cout<<"PASSWORD SALAH WOI :v";}
return 0;}

[/codesyntax]

Leave a Reply

Your email address will not be published. Required fields are marked *