摘要: 1.问题描述输出所有的“水仙花数”,所谓的“水仙花数”是指一个三位数其各位数字的立方和等于该数本身,例如,153是“水仙花数”,因为153=13+13+33。2.代码#include <stdio.h> int main(){ int a, b, c; for (int i = 100; i <=  阅读全文
posted @ 2023-05-18 19:20 kuku睡 阅读(76) 评论(0) 推荐(0)