ACM输入输出--多组测试用例--C、C++、Java

招贤纳士:

我们叫数澜

我们核心技术团队来自阿里、华为、金蝶、移动、GE等

我们获得来自阿里巴巴集团联合创始人、湖畔山南总裁谢世煌、IDG合伙人牛奎光、洪泰等投资

我们的官网:https://www.dtwave.com

我们提供:期权、五险一金、试用期全薪、商业保险、免费体检、入职即享年休、每周团建、生日party、生日礼物、节日礼品、技术分享、技术专题小组等。

我们的地盘在杭州余杭区仓前梦想小镇和北京望京soho

我们是一个技术氛围浓厚,高执行力,充满激情的团队,期待你的加入,共同成长!如有兴趣,烦请投递简历,我们将快速处理:

数据开发工程师、Node.js算法工程师、测试开发工程师、架构师,请投递简历至[email protected]

Java工程师、前端工程师,请投递简历至[email protected]

运维工程师、项目经理,请投递简历至[email protected]




最近在练习一些关于ACM的题,往往会有多组测试用例,不知道该怎么办,查找资料总结之。

C和C++:必须是 int  main()提交,输入和输出的格式一定要按照题目要求的去写,否则提交不过。输入不可用文件输入。

Language

C

C++

To read numbers

int n;
while(scanf("%d", &n) != EOF)
{
  ...
}

int n;
while (cin >> n)
{
  ...
}

To read characters

int c;
while ((c = getchar()) != EOF)
{
  ...
}

char c;
while (cin.get(c))
{
  ...
}

To read lines

char line[1024];
while(gets(line))
{
  ...
}

string line;
while (getline(cin, line))
{
  ...
}


Java:必须是public class Main提交,并且不能带包名,输入和输出的格式一定要按照题目要求的去写,否则提交不过。输入不可用文件输入。使用

Scanner sc=new Scanner(System.in);

1.  多组数据,每组数据一个n(5<= n <=10^6)。
接下来n个整数Xi (1<=Xi<=10^6)。

Sample Input
4
1 2 3 4
5
1 2 6 5 4
这种使用
while(sc.hasNext()){
n=sc.nextInt();
int a[]=new int [n];
for(int i=0;i a[i]=sc.nextInt();
}

}

2.  多组数据
input
5
20
30
40
每组是一个测试用例,
int n;
while(sc.hasNext()){
n=sc.nextInt();

}
3. 一个n,加上一个大小为n的数组
input
2
sdfgdsg
dgsfdg
使用:
Scanner sc = new Scanner(System.in);  
int n = sc.nextInt();  
for(int i=0;i String str = sc.next();  
......  
}  


更详细的Java输入输出参考:http://blog.csdn.net/shijiebei2009/article/details/17305223

你可能感兴趣的:(笔记,Java基础,c++,ACM)