C:获取屏幕输入

代码:

#include "stdafx.h"
#include "stdio.h"

int _tmain(int argc, _TCHAR* argv[])
{
    char buf[1024];

    while(fgets(buf,1024,stdin)!=NULL){
        printf("%s %s","你输入了:",buf);
    }
    return 0;
}

输出:

1234*23
你输入了: 1234*23
2+5
你输入了: 2+5

--2020年6月6日--

posted @ 2020-06-06 14:52  逆火狂飙  阅读(427)  评论(0编辑  收藏  举报
生当作人杰 死亦为鬼雄 至今思项羽 不肯过江东