码迷,mamicode.com
首页 > 其他好文 > 详细

chengxu

时间:2016-11-03 16:02:34      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:while   int   printf   include   else   ide   for   ice   break   

/* 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

标签:while   int   printf   include   else   ide   for   ice   break   

原文地址:http://www.cnblogs.com/pei942664/p/6026858.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!