#678: 如何空一格


spider458 (beginer)

學校 : 高雄市立高雄高級中學
編號 : 2895
來源 : [218.164.9.166]
最後登入時間 :
2010-08-18 08:40:17
a001. 哈囉 -- Brian Kernighan | From: [218.164.6.94] | 發表日期 : 2008-10-12 11:33

  這是不材小弟我的程式,他說要空一格,我測試過後有空一格啊,可是他不讓我過,請會的人教我如何空一格。

#include <iostream>
#include <string>
#include <ctype.h>
using namespace std;

int main()
{
 string s;
 while(cin >> s){
     cout << "Hello" <<'\t'<< s << endl;
            }
 return 0;
  
}

 
#681: Re:如何空一格


NOIP2008 (被爱惯坏)

學校 : 城阳一中
編號 : 2844
來源 : [119.165.128.99]
最後登入時間 :
2008-11-02 11:30:56
a001. 哈囉 -- Brian Kernighan | From: [123.234.210.240] | 發表日期 : 2008-10-12 22:28

  這是不材小弟我的程式,他說要空一格,我測試過後有空一格啊,可是他不讓我過,請會的人教我如何空一格。

#include <iostream>#include <string>#include <ctype.h>using namespace std;

int main(){ string s; while(cin >> s){     cout << "Hello" <<'\t'<< s << endl;            } return 0;   }

 

 

"Hello "  看到了嘛?

    在字符串中直接空出来就可以了



 
ZeroJudge Forum