free registration html

PERTEMUAN 8 FREE REGISTRATION

Latihan atau tugas Free Registration NAMA : Tgl Lahir: Alamat : Kota : Pekerjaan: Programer Data ANALISIS IT Su...

Selasa, 01 Februari 2022

Pertemuan 12

 #include<iostream>

#include<conio.h>

using namespace std;

main()

{


 int i,j,len,flag=1;

 char a[20];

    cout << "||*******************************************************||\n";

    cout << "||Nama : Muhamad Husni Ramadhan                          ||\n";

    cout << "||NIM  : 191011400011                                    ||\n";

    cout << "||                                                       ||\n";

    cout << "||PROGRAM UNTUK MENENTUKAN KALIMAT POLINDROM ATAU TIDAK  ||\n";

cout << "||*******************************************************||\n";

cout << endl;

    cout<<"Masukkan Kalimat : ";

    cin.getline(a,20);


 for(len=0;a[len]!='\0';++len);

 for(i=0,j=len-1;i<len/2;++i,--j)

 {

  if(a[j]!=a[i])

  flag=0;

 }


 if(flag==1)

 cout<<"\nKalimat Ini adalah Kalimat Polindrome";

 else

 cout<<"\nKalimat Ini Bukan Kalimat Polindrome";

 getch();

}

Tidak ada komentar:

Posting Komentar