长整数加法代码C++

redboy4677 26 0 CPP 2018-12-07 23:12:38

长整数加法,c++ //创建链表 l_store r_store(l_store h) //带头结点 { int flag=0; //flag 用来标识整数的符号 0表示 '+' 1表示 '-' h=(l_store)malloc(sizeof(lnode)); h->next=h->prior=NULL; l_store q=NULL; int count=0; char ch; fflush(stdin); //刷新输入缓冲区 while(ch!='\n') {

用户评论
请输入评论内容
评分:
暂无评论