寫出列印結果 /*num的因數*/

#include <stdio.h>
int main() /*寫出列印結果*/
{
    int min = 1, num = 18;
    printf("%d\n", num);
    while(min <= num)
    {
        if(num % min == 0)
        {
            printf("%d", min);
            if( num != min) printf(",");
        }
        min++;
    }
}

若min小於num執行while迴圈中的敘述式,

文章標籤

Will 發表在 痞客邦 留言(0) 人氣()

程式碼如下,最後回傳id值為多少?

 

文章標籤

Will 發表在 痞客邦 留言(0) 人氣()

raise eyebrows

文章標籤

Will 發表在 痞客邦 留言(0) 人氣()

think outside the boxs

原文解釋: to think freely, not bound by old, nonfunctional, or limiting structures, rules, or practices

文章標籤

Will 發表在 痞客邦 留言(0) 人氣()

up for grabs

原文解釋: available for anyone; not yet claimed

文章標籤

Will 發表在 痞客邦 留言(0) 人氣()

second nature

原文解釋: not innate but so long practised or acquired as to seem so

文章標籤

Will 發表在 痞客邦 留言(0) 人氣()

out cold

原文解釋: use when the person is in a deep sleep

文章標籤

Will 發表在 痞客邦 留言(0) 人氣()

from scratch

原文解釋: From the very beginning, from the outset; from nothing.

文章標籤

Will 發表在 痞客邦 留言(0) 人氣()

knock on wood

原文解釋: express a wish that something will or will not occur

文章標籤

Will 發表在 痞客邦 留言(0) 人氣()

knock it off

原文解釋: quit or stop doing something; to stop doing something that annoys you

文章標籤

Will 發表在 痞客邦 留言(0) 人氣()