标签:style io ar sp c on cti 代码 amp
代码:
#include <stdio.h>
#include <stdlib.h>
int main(void) {
int i;
double d;
char ch;
int counter;
counter = scanf("%i %lf %c", &i, &d, &ch);
printf("The return value of function is %d.\n", counter);
return EXIT_SUCCESS;
}
输入:
1 2.0 3
输出:
The return value of function is 3.
标签:style io ar sp c on cti 代码 amp
原文地址:http://my.oschina.net/Xwoder/blog/324127