[ create a new paste ] login | about

Link: http://codepad.org/BbrdEx7f    [ raw code | output | fork ]

appunti2 - C, pasted on May 1:
1
2
3
4
5
6
7
8
9
#include <stdio.h>
int main (void)
{
    int importo;
    importo = 10001;
    if (importo > 10000) printf ("L'offerta è vantaggiosa\n");
    getchar ();
    return 0;
}


Output:
1
L'offerta è vantaggiosa


Create a new paste based on this one


Comments: