/*
#include <stdio.h>
int main()
{
double s, v, x, y;
scanf("%lf %lf", &s, &v);
if (s<150)
{
x = s-100;
}
else if (s<160)
{
x = (s-150)/2+50;
}
else
{
x = (s-100) * 0.9;
}
y = (v-x) * 100/x;
if (y<=10)
{
printf("정상");
}
else if (y<=20)
{
printf("과체중");
}
else
{
printf("비만");
}
return 0;
}
조건문
1. if-else
2. switch-case
#include <stdio.h>
int main()
{
int a;
scanf("%d",&a);
if(a==10 || a==15 || a==17)
{
printf("공던지기 문제 풀기");
}
else if( a < 8)
{
}
else if(a==20)
{
printf("사주 문제 풀기");
}
else
{
printf("비만도 문제 풀기");
}
printf("\n");
switch(a)
{
case <8 : (x)
case 10 :
case 15 :
case 17 :
printf("공던지기 문제 풀기");
break;
case 20 :
printf("사주 문제 풀기");
break;
default :
printf("비만도 문제 풀기");
break;
}
return 0;
*/
/*
#include <stdio.h>
int main()
{
char s;
scanf("%c", &s);
switch(s)
{
case 'A':
printf("best!!!");
break;
case 'B':
printf("good!!");
break;
case 'C':
printf("run!");
break;
case 'D':
printf("slowly~ ");
break;
default :
printf("what?");
break;
}
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
int s;
scanf("%d", &s);
switch (s)
{
case 12 :
case 1 :
case 2:
printf("winter");
break;
case 3:
case 4:
case 5:
printf("spring");
break;
case 6:
case 7:
case 8:
printf("summer");
break;
case 9:
case 10:
case 11:
printf("fall");
break;
}
return 0;
}
n
90 91 92 93 94 95 96 97 98 99 -> n/10 가 9일때
100 -> n/10이 10일때
switch(n/10)
{
case 10 :
case 9 :
case 8 :
.....
}
*/
#include <stdio.h>
int main()
{
int s;
scanf("%d", &s);
switch (s/10)
{
}
}