导航切换
Back
Overview
Status
Standings
Clarifications
Login
Login
Register
Start:
Jun, 21, 2017 00:00:00
2017暑期短学期题库(part 4)
End:
Jul, 05, 2017 12:00:00
Time elapsed:
Time remaining:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
AA
AB
AC
AD
AE
AF
AG
AH
AI
AJ
AK
AL
AM
AN
【动态内存分配】一维动态数组
2049
Time Limit:
1 s
Memory Limit:
128 MB
Submission:
123
AC:
56
Score:
1
Submit
Codes
Description
程序的主体框架已经写好,你只需提交你写的部分代码。
#include <stdio.h>
#include <stdlib.h>
int main()
{
int i, n, *a;
scanf("%d", &n);
/*你的代码将会被嵌在这*/
for (i = 0; i < n; ++i)
{
scanf("%d", &a[i]);
}
for (i = 0; i < n; ++i)
{
printf("%d ", a[i]);
}
printf(" ");
return 0;
}
完成程序使其能成功编译,并完成如下功能:
读入n个数,然后输出这n个数。
Input
第一行一个整数n
第二行n个整数
Output
输出这n个整数,以空格相隔
Samples
input
Copy
10 1 1 1 1 1 1 1 1 1 1
output
Copy
1 1 1 1 1 1 1 1 1 1
Submit
Codes