Jump to content
Fórum Script Brasil
  • 0

Programaçao C


Maa

Question

Voce pode me ajudar ?

Faça um fluxograma que leia o tempo gasto e a velocidade média em uma

viagem realizada por um veículo com consumo de 12 Km/L. Este fluxograma

deverá calcular e apresentar a quantidade de combustível gasto nesta viagem.

5. Construir um fluxograma que faça a leitura das variáveis numéricas A e B, e

efetue a troca dos valores, de forma que a variável A passe a possuir o valor da

variável B e vice-versa. Apresente os valores trocados.

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

não entendi muito bem o que você quer (você precisa de um fluxograma de um código ou gerar um fluxograma atravez do código??)

aqui vai uma ideia...

int a,b,temp;
   a = 1;
   b = 2;

   temp = a;
   a = b;
   b = temp;
   printf("A: %i\nB: %i\n",a ,b);

pelomenos mostre que tentou fazer...

Link to comment
Share on other sites

  • 0

int a,b,temp;
   a = 1;
   b = 2;

   temp = a;
   a = b;
   b = temp;
   printf("A: %i\nB: %i\n",a ,b);

criei 3 numeros inteiros, a, b, temp

determinei a = 1 e b = 2

depois disso, determino que temp = a (ou seja, temp = 1)

a = b (ou seja a = 2)

b = temp ( ou seja b = 1)

por fim, imprimi os valores a e b

SE NÃO ENTENDEU ISSO, PROCURE APRENDER MAIS SOBRE A LINGUAGEM :P

Edited by marcoa
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...