Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5. char nome[10],cidade[15],resposta[1];
  6. printf("ola,qual eh seu nome n");
  7. scanf("%s",nome);
  8. printf("%s eh um nome legaln",nome);
  9. printf("mora onde? n");
  10. scanf("%s",cidade);
  11. printf("%s eh um lugar divertido?n",cidade);
  12. scanf("%s",resposta);
  13. if(resposta=="s"){
  14. printf("Que legal!Eu gostaria de morar em %sn",cidade);
  15. }
  16. else if(resposta=="n"){
  17. printf("Deve se chato morar em %sn",cidade);
  18. }
  19. else{
  20. printf("Digite s ou n");
  21. }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement