摘要: 阅读全文
posted @ 2022-11-02 12:04 飞雪飘鸿 阅读(10) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h> int main() { int n; scanf("%d",&n); int face=1; int i=1; while(i<=n){ face*=i; i++; } printf("%d!=%d\n",n,face); } n=1*2*3*4…… n!=? 阅读全文
posted @ 2022-11-02 11:19 飞雪飘鸿 阅读(97) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h> int main() { int x; scanf("%d",&x); int n=0; do { x/=10; n++; }while(x>0); printf("%d",n); } do while 直到循环,先循环后判断 阅读全文
posted @ 2022-11-02 11:09 飞雪飘鸿 阅读(32) 评论(0) 推荐(0) 编辑
https://damo.alibaba.com/ https://tianchi.aliyun.com/course?spm=5176.21206777.J_3941670930.5.87dc17c9BZNvLL