发布时间:2014-11-23 14:20:54
http://acm.hdu.edu.cn/showproblem.php?pid=1042大数N!点击(此处)折叠或打开#include<stdio.h>#include<string.h>const int maxn = 50000;int f[maxn];int main(){ int i,j,n;.........【阅读全文】
发布时间:2014-09-20 18:38:01
打算在Linux下用curses.h写一个图形界面,结果发现hello.c:1: fatal error: curses.h: No such file or directory上网搜索了一下,才发现是少安装了curses库于是在新得立查找libncurses5-dev,点击应用写了一个小程序#include <curses.h>int main(){ initscr(); &n.........【阅读全文】
发布时间:2014-09-17 19:58:14
stdin流阻塞的分析以scanf函数为例,运行下述程序12345678.........【阅读全文】