1 Star 0 Fork 0

暴龙战士never dies/练习生

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
水仙花数.c 312 Bytes
一键复制 编辑 原始数据 按行查看 历史
暴龙战士never dies 提交于 2024-08-18 17:49 . 编程的一大步
#define _CRT_SECURE_NO_WARNINGS 1
#include <stdio.h>
#include <math.h>
int main()
{
int a = 0;
int Sn = 0;
scanf("%d", &a);
for (int i = 0; i < 5; i++)
{
int temp = 0;
for (int j = 0; j <=i; j++)
{
temp *= 10;
temp += a;
}
Sn += temp;
}
printf("ǰΪ%d", Sn);
return 0;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/tyrannosaurus-rex-warrior-n/trainee.git
git@gitee.com:tyrannosaurus-rex-warrior-n/trainee.git
tyrannosaurus-rex-warrior-n
trainee
练习生
master

搜索帮助