동아리 활동 보고서 20517 임종구 |
|||||
---|---|---|---|---|---|
작성자 | 임종구 | 등록일 | 19.12.26 | 조회수 | 114 |
첨부파일 |
|
||||
print("주택용 전기요금 구하기") print("고압 or 저압") a=input() c=0 if a=="저압": print("몇월 입니까?(숫자만)") m=int(input()) if m==7 or m==8: b=int(input("전력 사용량(kWh):")) if b>1000: c=7300+709.5*b elif b>450: c=7300+280.6*b elif b>300 and b<=450: c=1600+b*187.9 elif b<=300: c=910+b*93.3 print("%.1f원" %c) input() elif m!=7 and m!=8 and m>=1 and m<=12: b=int(input("전력 사용량(kWh):")) if b>1000: if m==12 or m==1 or m==2: c=7300+709.5*b else: c=7300+280.6*b elif b>400: c=7300+280.6*b elif b>200 and b<=400: c=1600+b*187.9 elif b<=200: c=910+b*93.3 print("%.1f원" %c) input() elif a=="고압": print("몇월 입니까?(숫자만)") m=int(input()) if m==7 or m==8: b=int(input("전력 사용량(kWh):")) if b>1000: c=6060+574.6*b elif b>450: c=6060+215.6*b elif b>300 and b<=450: c=1260+b*147.3 elif b<=300: c=730+b*78.3 print("%.1f원" %c) input() elif m!=7 and m!=8 and m>=1 and m<=12: b=int(input("전력 사용량(kWh):")) if b>1000: if m==12 or m==1 or m==2: c=6060+574.6*b else: c=6060+215.6*b elif b>400: c=6060+215.6*b elif b>200 and b<=400: c=1260+b*147.3 elif b<=200: c=730+b*78.3 print("%.1f원" %c) input()
|
다음글 | 20425이현규 |
---|