13 lines
234 B
C
13 lines
234 B
C
/* skip2.c - 路过输入中的前两个整数 */
|
|
#include <stdio.h>
|
|
|
|
int main(void)
|
|
{
|
|
int n;
|
|
|
|
printf("Please enter three integers:\n");
|
|
scanf("%*d %*d %d", &n);
|
|
printf("The last integer was %d\n", n);
|
|
|
|
return 0;
|
|
} |