Advertisement
bertao

ex05 pro dia 21/08

Aug 15th, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. #include<stdio.h>
  2.  
  3. int main(){
  4. float salario;
  5. printf("informe seu salario:");
  6. scanf("%f",&salario);
  7.  
  8. salario=salario+(salario*0.25);
  9.  
  10. printf("salario depois do aumento:%f",salario);
  11.  
  12. return 0;
  13.  
  14.  
  15.  
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement