Algorithm/CodeUp

1157 : 특별한 공 던지기 1

B2SIC 2019. 4. 21. 20:23
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <stdio.h>
 
int main()
{
    double data;
    scanf("%lf", &data);
    
    if (data >= 50 && data <= 60)
        printf("win");
    else
        printf("lose");
    return 0;
}
 
Colored by Color Scripter
cs
저작자표시 비영리 변경금지 (새창열림)