H

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

· 2013-08-08 (목) 11:05:39 · 6491 · 13
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)

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









|

댓글 13개

무지무지 기네요
2013-08-08 (목) 11:27:32
음... 토론이 기네요
헐.......
if(egg_exists()) { buy('milk', 6); } else { buy('milk', 1); }
if(egg_exists()) { buy('milk', 6); } else { buy('milk', 1); }

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

이렇게 읽히는데요.

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

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

물론 결과는 같지만요.... ㅎㅎㅎㅎ
맞아여~ ㅋㅋㅋ 아줌마는 왜 조건을 뒤에 붙혔을까요? ㅋㅋㅋ
한국어로는 잘 모르겠는데 저 아줌마 표현은 영어로는 매우 정상적인 표현입니다. ㅎㅎㅎ

단지 그 순간 프로그래머 아저씨가 아줌마의 요구사항을 프로그래밍적 으로 이해했을뿐... ㅋㅋㅋㅋ
오 댓글들이 ㄷㄷㄷ
헛 오라클 까지 ㅋㅋㅋㅋ
안웃김
buy('milk', 1);
echo "ah"; //ㅋㅋ
if(egg_exists()) {
buy('milk', 6);
}

ㅋㅋㅋㅋ
ah

ㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋ
2013-08-14 (수) 18:03:20
프로그래머가 이렇담 굳이 우리 아이에게 프로그램 안가르켜도 되겠넹>>>
댓글을 작성하시려면 로그인이 필요합니다.

유머게시판

22,480건
+
제목 글쓴이 날짜 조회
13-08-09 조회 2,217
13-08-09 조회 1,750
13-08-09 조회 1,680
13-08-09 조회 1,872
13-08-08 조회 2,807
13-08-08 조회 2,022
13-08-08 조회 1,962
13-08-08 조회 2,096
13-08-08 조회 2,363
13-08-08 조회 2,859
13-08-08 조회 2,475
13-08-08 조회 6,492
13-08-08 조회 2,809
13-08-08 조회 1,458
13-08-08 조회 2,453
13-08-08 조회 2,871
13-08-08 조회 1,879
13-08-08 조회 1,754
13-08-08 조회 1,828
13-08-08 조회 1,736