用C语言的while循环语句编写1+11+111+1111+11111+····· +11···11最后是n个1

 我来答
rhythmkay
推荐于2018-02-28 · TA获得超过362个赞
知道小有建树答主
回答量:129
采纳率:0%
帮助的人:152万
展开全部
#include "stdio.h"
#include "math.h"
void main()
{
int i=1,n;
long sum=0,count=0,a;
scanf("%d",&n);
while(i<=n)
{
a=pow(10,i-1);
sum=sum+a;
count=count+sum;
i++;
//printf("%d\n",sum); //这里可以输出1,11,111,1111,……
}
printf("%d\n",count);
}
//超级简洁的代码,不懂可以把那个注释的//去掉看看。
昂首都
2017-07-30 · TA获得超过555个赞
知道小有建树答主
回答量:293
采纳率:93%
帮助的人:213万
展开全部
#include<stdio.h>
int main(void)
{
int temp=0,ans=0;
int i=0,n;
scanf("%d",&n);
while(i<n)
{
temp*=10;
temp++;
ans+=temp;
i++;
}
printf("%d\n",ans);
return 0;
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
whyganliang
2012-03-30
知道答主
回答量:2
采纳率:0%
帮助的人:2.8万
展开全部
#include <stdio.h>

int main()
{
int num=0;//num表示要输出的11111
int n=10;//n表示要输出多少个1
while(n)
{
int temp=num;
num=10*temp+1;
printf("%d ",num);
n--;
}
printf("\n");
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
chen499103473
2012-03-30 · TA获得超过114个赞
知道答主
回答量:137
采纳率:100%
帮助的人:69万
展开全部
#include<stdio.h>
void main()
{
int n=-1,i;
long s=0,p;
printf("please input n:\n");
while(n<0)
scanf("%d",&n); //输入n的值
p=i=1;
while(i<=n)
{
s+=p;
p*=10;
i++;
}
printf("%ld",s);
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
及千柳SY
2023-02-17
知道答主
回答量:1
采纳率:0%
帮助的人:253
展开全部
#include<stdio.h>
int main(void)
{
int temp=0,ans=0;
int i=0,n;
scanf("%d",&n);
while(i<n)
{
temp*=10;
temp++;
ans+=temp;
i++;
}
printf("%d\n",ans);
return 0;
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(5)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式