黑马程序员技术交流社区

标题: switch语句的用法 [打印本页]

作者: 杨庆庆    时间: 2015-6-20 00:38
标题: switch语句的用法

#include <stdio.h>


int main()
{
    int i = 0 ;
    char ch  = '*';
    for (int a=1;a<=4;a++)
    {   switch (a )
            {case 1 :
                printf("%c\n",ch );break;
               
            case 2:
                printf("%c%c%c\n",ch ,ch,ch);break;
            case 3:
                printf("%c%c%c%c%c\n",ch,ch,ch,ch,ch);break;
            case 4:
                printf("%c%c%c%c%c%c%c\n",ch,ch,ch,ch,ch,ch,ch);break;

    }
    }

    return 0;

}
作者: xu521cheng    时间: 2015-6-23 23:18
还不错,今天我们刚学了switch.




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2