#include
#include
void main()
{
char kalimat[100];
int temp_ascii,geser;
cout<<"Masukan kalimat yang akan di dekrip \t= "; cin.getline(kalimat,sizeof(kalimat)); cout<<"Masukan Jumlah Penggeseran \t \t= "; cin>>geser;
cout<<"Hasilnya adalah \t\t\t= "; for(int i=0;kalimat[i];i++) { temp_ascii=int(kalimat[i]); if(temp_ascii != 32)//mengecek apakah ada spasi { if((temp_ascii>=97) && (temp_ascii<=122))//inputan a-z { temp_ascii = 97 + (temp_ascii - 97 - geser + 26) % 26; cout<
{
temp_ascii = 65 + (temp_ascii - 65 - geser + 26) % 26;
cout<
}
else
cout<
}
getch();
}
Tidak ada komentar:
Posting Komentar