Skip to content

Instantly share code, notes, and snippets.

@werbet
Created November 5, 2014 21:51
Show Gist options
  • Save werbet/2e4460fdc3c374dba2f6 to your computer and use it in GitHub Desktop.
Save werbet/2e4460fdc3c374dba2f6 to your computer and use it in GitHub Desktop.
Questão 1 da Lista Prática 1
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char *argv[])
{
int numero;
do
{
printf("Digite um numero: \n");
scanf("%d", &numero);
printf("O quadrado de %d eh %d\n", numero, numero * numero);
}
while(numero != 0);
system("PAUSE");
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment