printf特殊用法

一直想实现那种在控制台里花哨显示的功能,
最近终于小试了下,其实没什么特别的,
就是向上移动光标…

复杂的参阅ANSI CODE

/*description : printf special method
 *
 * date : 2015/12/04
 *
 *
*/

#include <stdio.h>
#include <string.h>


int main()
{
    printf("\033[2J");  // clear the screen

    printf("\033[2;5H");    // set the postion of cursor
    printf("\033[0;32;32m");    // set the color green
    printf("\033[K");   // clean the remains of the line
    printf("\033[4m");  // set the underline

    printf("hello world\n");

    printf("\033[0m");  // close all of the attributes

    printf("\033[2A");  // up the cursor 
    printf("hello world again");
    printf("\033[3B");  // down the cursor 


    return 0;
}

输出如下,当然颜色我就不贴图片了

hello world again
    hello world

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值