首页
新闻
小组
威客
人才
下载
博客
代码贴
在线编程
论坛
注册
|
登录
代码贴
→
鱼鱼儿丸子的代码贴
→
全部
[C++]不知道#include<iomanip>这个函数怎么用?还有不知道编的杨辉三角怎么用这个函数弄出等腰三角形?求高手指点!!!
#include<iostream.h>
#include<iomanip.h>
enum error_code{success,overflow,underflow};
typedef struct node{
int data;
struct node *next;
}node;
class queue{
public:
queue();
~queue();
bool empty()const;
......................
阅读全部
| 2012年3月5日 04:47
1
鱼鱼儿丸子
全部(1)
C++(1)