Advertisement
EvgeniiKraaaaaaaav

1.1 ( abs?!?What does it mean?)

Dec 5th, 2018
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 2.19 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.  
  26. #include <stdio.h>
  27.  
  28. int main ()
  29. {
  30.   int x;
  31.   int abs1 = 0;
  32.   int abs2 = 0;
  33.   printf ("Введите значение х : ");
  34.   scanf ("%d", &x);
  35.   abs1 = 2 * x + 3;
  36.   if (abs1 < 0)
  37.   {
  38.     abs2 = abs1 * (-1);
  39.   }
  40.   abs2 = abs1;
  41.   abs2 = abs2 - 1;
  42.   if (abs2 < 0)
  43.   {
  44.     abs2 = abs2 * (-1);
  45.   }
  46.   printf ("Ответ : %d", abs2);
  47. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement