C語言編程題目 (實用經典) 5

#include <stdio.h> #include <stdlib.h> //打印出100-999之間全部的水仙花數 int main(){ int i; int a, b, c; for (i = 100; i < 1000; ++i){ a = i % 10; //a表示i的個位上的數字 b = i / 10 % 10; //b表示i的十位上的數字; c = i / 1
相關文章
相關標籤/搜索