Discuto is Loading your document from Drive

It can take a while depending on the size of the document..please wait

Discuto is submitting your document

It might take a while depending on the size of the document you uploaded..

Discuto is creating your discussion

Please do not close this window.

Discuto is submitting your comment

Did you know you can vote on comments? You can also reply directly to people's comments.

Your invites are being queued for sending

This might take some time depending on the number of invites, please do not close this window.

Discuto

Discuto

practica 09.docx

Starting: 16 Jan Ending

0 days left (ends 15 Feb)

Go to discussion, participate and give your opinion

description

Further info

LATEST ACTIVITY

LEVEL OF AGREEMENT

    • 0%
    • (0 positive votes)
    • 0%
    • (0 negative votes)
  • 0 votes in total
  • Most voted: 0
  • Most commented: 0
  • Most controversial: 0
  • Already decided: 0
  • In voting: 0
  • Supported: 0
  • My contributions: 0

MOST DISCUSSED PARAGRAPHS

No activity yet

LATEST COMMENTS

No activity yet

MOST ACTIVE USERS

No activity yet
Status: Closed
Privacy: Public

CONTRIBUTORS (1)

Share:
_
<< Previous paragraphs

P20

Sintáxis:

You agreeCan't vote

Add comment

P21

do

You agreeCan't vote

Add comment

P22

{

You agreeCan't vote

Add comment

P23

instrucción(es);

You agreeCan't vote

Add comment

P24

} while (expresión);

You agreeCan't vote

Add comment

P25

Ejemplo ciclo do-while:

You agreeCan't vote

Add comment

P26

# include <stdio.h>

You agreeCan't vote

Add comment

P27

# include <stdlib.h>

You agreeCan't vote

Add comment

P28

void main()

You agreeCan't vote

Add comment

P29

{

You agreeCan't vote

Add comment

P30

int cont=1;

You agreeCan't vote

Add comment

P31

do

You agreeCan't vote

Add comment

P32

{

You agreeCan't vote

Add comment

P33

printf ("%d\n ",cont);

You agreeCan't vote

Add comment

P34

cont++;

You agreeCan't vote

Add comment

P35

}while(cont <= 20);

You agreeCan't vote

Add comment

P36

system(“PAUSE”);

You agreeCan't vote

Add comment

P37

}

You agreeCan't vote

Add comment

P38

  • Ciclo While
You agreeCan't vote

Add comment

P39

Con esta sentencia se controla la condición antes de entrar en el bucle. Si ésta no se cumple, el programa no entrará en el bucle. Naturalmente, si en el interior del bucle hay más de una sentencia, éstas deberán ir entre llaves para que se ejecuten como un bloque.

You agreeCan't vote

Add comment