Advertisement
Guest User

ex4

a guest
Aug 21st, 2014
241
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.62 KB | None | 0 0
  1. main()
  2. {
  3.     ////////////////
  4.     // Variaveis //
  5.     ///////////////
  6.  
  7.     int x;
  8.     int y;
  9.  
  10.  
  11.     ////////////////
  12.     // Constantes //
  13.     ////////////////
  14.  
  15.     string x_value     = "Escreva um valor para X:";
  16.     string y_value     = "Escreva um valor para Y:";
  17.     string get_integer = "%d"                      ;
  18.     string sum_total   = "X + Y é igual a %d"      ;
  19.  
  20.  
  21.     ///////////////////////
  22.     // Inicio de Seleção //
  23.     ///////////////////////
  24.  
  25.     printf(x_value); scanf(get_integer, &x);
  26.  
  27.     printf(y_value); scanf(get_integer, &y);        
  28.  
  29.     x = x + y;
  30.  
  31.     printf(sum_total, x);
  32.  
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement