Advertisement
programusy

Untitled

Apr 5th, 2024
16
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. #include <iostream>
  2. #include <cstring>
  3.  
  4. // Funkcja sprawdzająca sumę kontrolną numeru PESEL
  5. bool checkSum(const char* pesel) {
  6. int weights[] = {1, 3, 7, 9, 1, 3, 7, 9, 1, 3, 1};
  7. int sum = 0;
  8.  
  9. for (int i = 0; i < 11; ++i) {
  10. sum += (pesel[i] - '0') * weights[i];
  11. }
  12.  
  13. return (sum % 10 == 0);
  14. }
  15.  
  16. // Funkcja główna
  17. int main() {
  18. char pesel[12];
  19. std::cout << "Podaj numer PESEL: ";
  20. std::cin >> pesel;
  21.  
  22. if (std::strlen(pesel) != 11) {
  23. std::cout << "Numer PESEL musi mieć dokładnie 11 cyfr." << std::endl;
  24. return 1;
  25. }
  26.  
  27. if (checkSum(pesel)) {
  28. std::cout << "Numer PESEL jest prawidłowy." << std::endl;
  29. } else {
  30. std::cout << "Numer PESEL jest nieprawidłowy." << std::endl;
  31. }
  32.  
  33. return 0;
  34. }
  35.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement