摘要: ```#include int main(){ //printf("please input the value a:\n"); fprintf(stdout, "please input the value a:\n"); int a; //scanf("%d",&a); fscanf(stdin... 阅读全文
posted @ 2015-06-29 22:40 樱风凛 阅读(207) 评论(0) 推荐(0) 编辑
摘要: ```c#include int main(int argc, char const *argv[]){ int i; for ( i = 0; i < argc; i++) { printf("argv[%d] is %s\n", i,argv[i]); } return 0;}// int a... 阅读全文
posted @ 2015-06-29 22:17 樱风凛 阅读(190) 评论(0) 推荐(0) 编辑