アプリケーション部とインタフェース部の交錯
Application part and UI part intermingled
計算部とインタフェース部が混合しやすい
UI part mixed in the code
再利用が困難
Difficult to reuse UI part
printf("Input your name: ");
scanf("%s", name);
s = calc(name);
printf("%s\n",s);