hdu Write a simple HTML Browser

时间:2021-06-21 20:47:50

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1088

对比输出

代码:

 #include <stdio.h>
#include <string.h>
#include <math.h>
#include <algorithm>
#include <iostream>
#include <ctype.h>
#include <iomanip>
#include <queue>
#include <map>
#include <stdlib.h>
using namespace std; char word[]; int main()
{
int len,i;
int cp=-;
while(scanf("%s",word)==){
if(strcmp(word,"<br>")==){
putchar('\n');
cp=-;
}
else if(strcmp(word,"<hr>")==){
if(cp!=-)
putchar('\n');
for(i=;i<;i++)
putchar('-');
putchar('\n');
cp=-;
}
else{
len=strlen(word);
if(cp+len+<){
if(cp!=-)
putchar(' ');
printf("%s",word);
cp+=(len+);
}
else{
putchar('\n');
printf("%s",word);
cp=len;
}
}
}
putchar('\n');
return ;
}