SEZAR SHIFRLASH ALGORITMINI C++ DASTURLASH
TILIDAGI KODI
1.
#include
2.
#include
3.
using
namespace
std
;
4.
char
sezar
(
char
)
;
5.
int
main
()
6.
{
7. string input
;
8.
do
9.
{
10.
cout
<<
"
Davom etish uchun shifrlangan matnni kiriting va Enter tugmasini bosing
11.
."
<<
endl
;
12.
cout
<<
"
Chiqish uchun bo'sh qatorni kiriting
13.
."
<<
endl
;
14.
getline
(
cin
, input
)
;
15.
string output
=
""
;
16.
for
(
int
x
=
0
;
x
<
input.
length
()
;
x
++
)
17.
{
18.
output
+
=
sezar
(
input
[
x
])
;
19.
}
20.
cout
<<
output
<<
endl
;
21.
}
22.
while
(
!
input.
length
()
==
0
)
;
23.
}
//end main
24.
25.
char
sezar
(
char
c
)
26.
{
27.
if
(
isalpha
(
c
))
28.
{
29.
c
=
toupper
(
c
)
;
30.
31.
c
=
(((
c
-
65
)
+
13
)
%
26
)
+
65
;
32.
}
33.
34.
return
c
;
35.
}
BAJARDI:Ergashaliyev Jasurbek