C语言
小芳矶
因为笨,所以简单,很菜怕脑子转不过来
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
topcoder上的additionGame用C语言实现
topcoder里的addtionGame题目如下: Problem Statement Fox Ciel is playing a game called Addition Game. Three numbers A, B and C are written on a blackboard, and Ciel initially has 0 points. She repeats the following operation exactly N times: She chooses one of the原创 2021-06-09 14:13:27 · 382 阅读 · 3 评论 -
用C语言求取s=a+aa+aaa+aaaa+aa...a的值
用C语言求取s=a+aa+aaa+aaaa+aa…a的值 如何实现这个功能,首先必须包括循环,本文通过自己编写的程序实现,绝无抄袭呦,小编自己写的程序~~~~~ 下面放大招,附代码!!!!!!! /计算s=a+aa+aaa+aaaa+aa…a的值/ #include<stdio.h> void main(){ int a,b,i; int t=1; int num=0; int sum=0; printf(“请输入对象数(0~9之间):\n”); scanf("%d",&a); prin原创 2021-05-29 14:10:14 · 7853 阅读 · 0 评论
分享