#1890: 爲什麼通不過..


first350 (fresh)

學校 : 國立臺中第一高級中學
編號 : 6690
來源 : [114.41.139.174]
最後登入時間 :
2011-02-25 18:53:15
a001. 哈囉 -- Brian Kernighan | From: [114.46.150.148] | 發表日期 : 2009-05-02 21:06

#include <stdio.h>
#include <stdlib.h>

int main(void)
{
  char s[10];
  scanf("%s",&s);
  printf("hello, %s",s);


 system("pause");
 return 0;

}

 

到底哪裡有錯??

 
#2153: Re:爲什麼通不過..


tzp_1210 (多维数组)

學校 : 湖南株洲市第二中学
編號 : 7191
來源 : [118.251.21.197]
最後登入時間 :
2009-08-30 21:38:58
a001. 哈囉 -- Brian Kernighan | From: [222.241.242.230] | 發表日期 : 2009-07-09 17:28

#include
#include

int main(void)
{
  char s[10];
  scanf("%s",&s);
  printf("hello, %s",s);


 system("pause");
 return 0;

}

 

到底哪裡有錯??

注意题目的要求:输入有多行

你须要用一个循环来处理多个字符。

另外你用pause命令会让你的程序超时的。

 
ZeroJudge Forum