All pastes #2075291 Raw Edit

Miscellany

public text v1 · immutable
#2075291 ·published 2011-06-05 23:57 UTC
rendered paste body
#include <string.h>
#include <stdio.h>
int main (void)
{
    int i, pressao;
    for (i = 0; i < 5; i++)
    {
        printf("Entre com a pressao: ");
        scanf("%d", &pressao);
        if (pressao > 8000)
        {
           printf("*\n");
           printf("*\n");
        }   
    } 
system("PAUSE");
return 0;         
}