Online JudgeProblem SetAuthorsOnline ContestsUser
Web Board
Home Page
F.A.Qs
Statistical Charts
Problems
Submit Problem
Online Status
Prob.ID:
Register
Update your info
Authors ranklist
Current Contest
Past Contests
Scheduled Contests
Award Contest
User ID:
Password:
  Register

//kick 从前要删帖的,不知现在还删不?

Posted by frkstyc at 2006-03-17 00:16:42 on Problem 1028
In Reply To:AC code Posted by:sunflowwer at 2006-03-17 00:15:30
> 根本不需要理会“http://"的问题哦
> 后来删除了那个多余的东西终于过了
> code:
> #include <iostream.h>
> #include <string.h>
> 
> int i,j,l;
> int i0,k,temp;
> int b[1001];
> int f[1001];
> char a[1001][100];
> 
> void p(int x)
> {
> 	cout<<a[x]<<endl;
> }
> void init()
> {   i=0;j=0;k=1;
>     char a0[]="http://www.acm.org/";
> 	for(l=0;a0[l];l++){
> 		a[1][l]=a0[l];
> 	}
> 	temp=1;
> }
> void visit()
> {
> 	b[++i]=temp;
> 	cin>>a[++k];
> 	temp=k;
> 	p(temp);
> 	j=0;
> }
> void back()
> {
> 	if(i>0){
> 		f[++j]=temp;
> 		temp=b[i];
> 		--i;
> 		p(temp);
> 	}
> 	else{cout<<"Ignored"<<endl;}
> }
> void forward()
> {
> 	if(j>0){
> 		b[++i]=temp;
> 		temp=f[j];
> 		--j;
> 		p(temp);
>     }
> 	else{cout<<"Ignored"<<endl;
> 	}
> }
> int main()
> {
>      init();
> 	 while(1)
> 	 {
> 		  char c[100];
> 		  cin>>c;
> 		  if(c[0]=='V'){visit();}
> 		  else if(c[0]=='B'){back();}
> 		  else if(c[0]=='F'){forward();}
> 		  else if(c[0]=='Q'){break;}
> 	 }
> 	 return 0;
> }

Followed by:

Post your reply here:
User ID:
Password:
Title:

Content:

Home Page   Go Back  To top


All Rights Reserved 2003-2013 Ying Fuchen,Xu Pengcheng,Xie Di
Any problem, Please Contact Administrator