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

P40

La única diferencia entre las sentencias while y do-while es que con la segunda el cuerpo del bucle se ejecutará por lo menos una vez.

You agreeCan't vote

Add comment

P41

Sintáxis:

You agreeCan't vote

Add comment

P42

while (expresión)

You agreeCan't vote

Add comment

P43

{

You agreeCan't vote

Add comment

P44

instrucción(es);

You agreeCan't vote

Add comment

P45

}

You agreeCan't vote

Add comment

P46

Mismo ejemplo ciclo while:

You agreeCan't vote

Add comment

P47

# include <stdio.h>

You agreeCan't vote

Add comment

P48

# include <stdlib.h>

You agreeCan't vote

Add comment

P49

void main()

You agreeCan't vote

Add comment

P50

{

You agreeCan't vote

Add comment

P51

int cont=1;

You agreeCan't vote

Add comment

P52

while(cont <= 20)

You agreeCan't vote

Add comment

P53

{

You agreeCan't vote

Add comment

P54

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

You agreeCan't vote

Add comment

P55

cont++;

You agreeCan't vote

Add comment

P56

}

You agreeCan't vote

Add comment

P57

system(“PAUSE”);

You agreeCan't vote

Add comment

P58

}

You agreeCan't vote

Add comment

P59

  • Ciclo For
You agreeCan't vote

Add comment