首页 > 其他 > 详细

HDOJ_ How can I read input data until the end of file ?

时间:2014-03-16 21:32:32      阅读:444      评论:0      收藏:0      [点我收藏+]

 

Language C C++ Pascal
To read numbers int n;
while(scanf("%d", &n) != EOF)
{
  ...
}
int n;
while (cin >> n)
{
  ...
}
var n: integer;
...
while not seekeof do
begin
  read(n);
  ...
end;
To read characters int c;
while ((c = getchar()) != EOF)
{
  ...
}
char c;
while (cin.get(c))
{
  ...
}
var c: char;
...
while not eof do
begin
  read(c); 
  ...
end;
To read lines char line[1024];
while(gets(line))
{
  ...
}
string line;
while (getline(cin, line))
{
  ...
}
var line: string;
...
while not eof do
begin
  readln(line);
  ...
end;

HDOJ_ How can I read input data until the end of file ?,布布扣,bubuko.com

HDOJ_ How can I read input data until the end of file ?

原文:http://www.cnblogs.com/ct0421/p/3603743.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!