chengxu
Posted 你心永在
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了chengxu相关的知识,希望对你有一定的参考价值。
/* Note:Your choice is C IDE */
#include "stdio.h"
void main()
{
int hang,shuchu,two,i;
do
{
printf("你要输入多少行的星星");
scanf("%d",&hang);
for(shuchu=1;shuchu<=hang;shuchu++)
{
for(two=1;two<=10;two++)
{
printf("*");
}
printf("\n");
}
do
{
printf("\n继续输入1退出输入2");
scanf("%d",&i);
if(i==1)
break;
else if(i==2)
break;
else (i!=1&&i!=2);
printf("输入错误");
}while(i!=1&&i!=2);
if(i==2)
break;
}while(i==1);
}
以上是关于chengxu的主要内容,如果未能解决你的问题,请参考以下文章