Algorithm 版 (精华区)
发信人: xiong (阿拉斯加棕熊), 信区: Algorithm
标 题: 1099K-HTML-ZJU
发信站: 哈工大紫丁香 (2002年10月12日11:58:15 星期六), 站内信件
#include "iostream.h"
#include "stdio.h"
#include "string.h"
int main(void)
{
char temp[81];
char compare[5];
int count=0;
bool is=false;
while(cin>>temp)
{
strcpy(compare,"<br>");
if(strcmp(temp,compare)==0)
{
cout<<endl;
count=0;
is=false;
}
else
{
strcpy(compare,"<hr>");
if(strcmp(temp,compare)==0)
{
if(count!=0)
{
cout<<endl;
}
cout<<"-----------------------------------------------------------------
---------------";
cout<<endl;
is=false;
count=0;
}
else
{
if(count+strlen(temp)<81)
{
if(count!=0)
{
cout<<" "<<temp;
is=true;
}
else
{
cout<<temp;
is=true;
}
count+=strlen(temp)+1;
}
else
{
cout<<endl<<temp;
count=strlen(temp)+1;
is=true;
}
}
}
}
if(is==true)
cout<<endl;
return 0;
}
--
为了民族的尊严 为了祖国的明天
※ 来源:·哈工大紫丁香 bbs.hit.edu.cn·[FROM: 202.118.226.228]
Powered by KBS BBS 2.0 (http://dev.kcn.cn)
页面执行时间:5.462毫秒