Abatoor

Untitled

Dec 7th, 2020
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.29 KB | None | 0 0
  1. #include <iostream>
  2. #include <conio.h>
  3. #include<windows.h>
  4. using namespace std;
  5. void main()
  6. {
  7.     setlocale(LC_ALL, "Russian");
  8.     int i;
  9.     char a;
  10.     cout << "Введеите число: ";
  11.     cin >> a;
  12.     i = ((int)a + 1) % 10;
  13.     cout << i << endl;
  14.     i = ((int)a + 13) % 10;
  15.     cout << i << endl;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment