0400-2 - Exemplo 1

You might also like

You are on page 1of 1

#include <stdio.

h>
#include <stdlib.h>

int main(){

int x=1;
while (x<=5){
printf(" Numero: %d \n", x);
x++;
}
system('pause');

You might also like