코딩 하는 사람만 웃기는 유머 > 자유게시판

자유게시판

코딩 하는 사람만 웃기는 유머 정보

코딩 하는 사람만 웃기는 유머

본문

A wife asks her husband, "Could you please go shopping for me and buy one carton of milk, and if they have eggs, get 6."

A short time later the husband comes back with 6 cartons of milk. The wife asks him, "Why did you buy 6 cartons of milk?"

He replied, "They had eggs."



totalCartonsofMilk = 1If(eggs) {totalCartonsofMilk = 6}return totalCartonsofMilk

var totalCartonsOfMilk = hasEggs()? 6 : 1;

해결책까지 제시해줌

What the wife actually said:

.#!/usr/bin/env pythonfrom SuperMarkets import check_out, find_markets, inventorydef run_errand(milk, eggs):    shopping_cart = []    if 'milk' in inventory and 'eggs' in inventory:        shopping_cart.append(milk * 6)    elif 'milk' in inventory and 'eggs' not in inventory:        shopping_cart.append(milk)    else:       print 'Store has no milk.  Try another.'       find_markets()    check_out(shopping_cart)if __name__ == '__main__':    run_errand(milk='milk', eggs='eggs').

What the wife should have said to her programmer husband:

.#!/usr/bin/env pythonfrom SuperMarkets import check_out, find_markets, inventorydef run_errand(milk, eggs):    shopping_cart = []    if 'milk' in inventory and 'eggs' in inventory:        shopping_cart.append(milk + eggs)    elif 'milk' in inventory and 'eggs' not in inventory:        shopping_cart.append(milk)    elif 'eggs' in inventory and 'milk' not in inventory:        shopping_cart.append(eggs)        print 'Buy eggs, then go to another store for milk.'        find_markets()    else:        print 'Store has no eggs or milk.  Try another.'        find_markets()    check_out(shopping_cart)if __name__ == '__main__':    run_errand(milk='milk', eggs='eggs' * 6)

한국에서는 싸움남 ㅋㅋㅋㅋ









추천
0
  • 복사

댓글 13개

if(egg_exists()) { buy('milk', 6); } else { buy('milk', 1); }

이걸 읽으면 계란이 존재하는 경우 우유 6개, 아니면 한개 사.

이렇게 읽히는데요.

if(eqg != 'exists') { buy('milk', 1); } else { buy('milk', 6); }

이게 더 정확하지 않을까요?

물론 결과는 같지만요.... ㅎㅎㅎㅎ
한국어로는 잘 모르겠는데 저 아줌마 표현은 영어로는 매우 정상적인 표현입니다. ㅎㅎㅎ

단지 그 순간 프로그래머 아저씨가 아줌마의 요구사항을 프로그래밍적 으로 이해했을뿐... ㅋㅋㅋㅋ
© SIRSOFT
현재 페이지 제일 처음으로