Advertisement
EvgeniiKraaaaaaaav

3.1(WordPosition) DON’T CHECK

Dec 6th, 2018
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 2.74 KB | None | 0 0
  1. //https://vk.com/evgenykravchenko0
  2.  
  3.                 ___                                        ___                   ___    
  4.                /  /\                  ___                 /  /\                 /  /\    
  5.               /  /:/_                /__/\               /  /:/_               /  /:/_  
  6.              /  /:/ /\               \  \:\             /  /:/ /\             /  /:/ /\  
  7.             /  /:/ /:/_               \  \:\           /  /:/_/::\           /  /:/ /:/_
  8.            /__/:/ /:/ /\          ___  \__\:\         /__/:/__\/\:\         /__/:/ /:/ /\
  9.            \  \:\/:/ /:/         /__/\ |  |:|         \  \:\ /~~/:/         \  \:\/:/ /:/
  10.             \  \::/ /:/          \  \:\|  |:|          \  \:\  /:/           \  \::/ /:/
  11.              \  \:\/:/            \  \:\__|:|           \  \:\/:/             \  \:\/:/  
  12.               \  \::/              \__\::::/             \  \::/               \  \::/  
  13.                \__\/                   ~~~~               \__\/                 \__\/    
  14.                             ___                                            
  15.                            /__/\                ___                 ___    
  16.                            \  \:\              /  /\               /  /\    
  17.                             \  \:\            /  /:/              /  /:/    
  18.                         _____\__\:\          /__/::\             /__/::\    
  19.                        /__/::::::::\         \__\/\:\__          \__\/\:\__
  20.                        \  \:\~~\~~\/            \  \:\/\            \  \:\/\
  21.                         \  \:\  ~~~              \__\::/             \__\::/
  22.                          \  \:\                  /__/:/              /__/:/
  23.                           \  \:\                 \__\/               \__\/  
  24.                            \__\/                        
  25. #include <stdio.h>
  26.  
  27. int position_words (char firstword[10000], char secondword[10000])
  28. {
  29.   int i;
  30.   int count = 0;
  31.   for (i = 0; i < 10000; i++)
  32.   {
  33.     if (firstword[i] != secondword[i] && firstword[i] >= 'A' && firstword[i] <= 'z' && secondword[i] >= 'A' && secondword[i] <= 'z')
  34.       count++;
  35.     if (firstword[i] == ' ' && secondword[i] == ' ')
  36.       break;
  37.   }
  38.   if (count == 0)
  39.     printf("Отличий нет");
  40.    
  41.   return count;
  42. }
  43.  
  44. int main()
  45. {
  46.   char firstword[10000];
  47.   char secondword[10000];
  48.  
  49.   printf("Введите первое слово : ");
  50.   scanf("%s", firstword);
  51.   printf("Введите первое слово : ");
  52.   scanf("%s", secondword);
  53.  
  54.   if (position_words(firstword, secondword) > 0)
  55.     printf("Слова отличаются в  %d  позициях(Регистр букв включается) \n ", position_words(firstword, secondword));
  56.  
  57.   return 0;
  58. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement