C언어
-
[C언어] 컴퓨터와 가위바위보, if절 없이Programming/C언어 2021. 2. 2. 22:04
#include #include #include void main() { int me,com; srand(time(NULL)); com=rand()%3; printf("가위(1),바위(2),보(3) 중 하나를 입력하세요.\n가위 바위 보!!\n"); scanf("%d",&me); switch(me) { case 1: switch(com) { case 1: printf("내가 낸것 :가위(1) vs. 컴퓨터가 낸것: 가위(1)\n\n\n비겼습니다!\n\n\n"); break; case 2: printf("내가 낸것 :가위(1) vs. 컴퓨터가 낸것: 바위(2)\n\n\n졌습니다!\n\n\n"); break; case 3: printf("내가 낸것 :가위(1) vs. 컴퓨터가 낸것: 보(3)\n\n\n이겼습..
-
[C언어] 실수 자릿수 각각 출력하기Programming/C언어 2021. 2. 1. 22:03
#include main() { float x; int a,b,c,d,e; printf("실수를 입력하세요.\n ( 셋째자리 ~ 소수 둘째자리)\n"); scanf("%f",&x); x=x+0.005; c=(int)x/100; b=(int)x/10-10*c; a=(int)x-c*100-10*b; d=x*10-c*1000-b*100-a*10; e=x*100-c*10000-b*1000-a*100-10*d; printf("첫째자리 : %d\n",a); printf("둘째자리 : %d\n",b); printf("셋째자리 : %d\n",c); printf("소수점 첫째자리 : %d\n",d); printf("소수점 둘째자리 : %d\n",e); } https://nol-a.tistory.com/22 [C언어] f..