Skip to content
Snippets Groups Projects
Commit d40ffd97 authored by 이장원's avatar 이장원
Browse files

Delete 8.3........3

parent 777d5743
No related branches found
No related tags found
No related merge requests found
#include <stdio.h>
int main()
{
int a;
fscanf(stdin, "%d", &a);
if (a > 0)
fprintf(stderr, "Error: It is positive\n");
else
fprintf(stderr, "Error: It is negative\n");
fprintf(stdout, "Hello, World %-d\n", a);
return 0;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment