主程式的範例如下
#include <stdio.h>
int main() {
    int income=0;
    while (scanf("%d",&income) > 0) {
        if (income==0) break;
        // put your code here;
    }
}
注意你的程式必須有詳細的註解, 並且以內縮四個空格的方式 將你的程式對齊.