单字符I/O: getchar()和putchar()

作者:追风剑情 发布于:2019-9-5 21:27 分类:C

  1. //Visual Studio中加上这句才可以使用scanf()
  2. //否则只能使用scanf_s()
  3. #define _CRT_SECURE_NO_WARNINGS
  4. #include <stdio.h>
  5. #include <stdbool.h>
  6.  
  7. // 验证输入是一个整数
  8. long get_long(void);
  9. // 验证范围的上下限是否有效
  10. bool bad_limits(long begin, long end, long low, long high);
  11. // 计算a~b之间的整数平方和
  12. double sum_squares(long a, long b);
  13.  
  14. //argc: 参数个数 argv[]: 参数数组
  15. int main(int argc, char *argv[])
  16. {
  17. const long MIN = -10000000L; // 范围的下限
  18. const long MAX = +10000000L; // 范围的上限
  19. long start; // 用户指定的范围最小值
  20. long stop; // 用户指定的范围最大值
  21. double answer;
  22.  
  23. printf("This program computes the sum of the squares of "
  24. "integers in a range.\nThe lower bound should not "
  25. "be less than -10000000 and \nthe upper bound "
  26. "should not be more than +10000000.\nEnter the "
  27. "limits (enter 0 for both limits to quit):\n"
  28. "lower limit: ");
  29. start = get_long();
  30. printf("upper limit: ");
  31. stop = get_long();
  32. while (start != 0 || stop != 0)
  33. {
  34. if (bad_limits(start, stop, MIN, MAX))
  35. printf("Please try again.\n");
  36. else
  37. {
  38. answer = sum_squares(start, stop);
  39. printf("The sum of the squares of the integers ");
  40. printf("from %ld to %ld is %g\n", start, stop, answer);
  41. }
  42. printf("Enter the limits (enter 0 for both "
  43. "limits to quit):\n");
  44. printf("lower limit: ");
  45. start = get_long();
  46. printf("upper limit: ");
  47. stop = get_long();
  48. }
  49. printf("Done.\n");
  50.  
  51. system("pause");
  52. return 0;
  53. }
  54.  
  55. long get_long(void)
  56. {
  57. long input;
  58. char ch;
  59. //scanf返回正确读入的个数
  60. while (scanf("%ld", &input) != 1)
  61. {
  62. while ((ch = getchar()) != '\n')
  63. putchar(ch); //处理错误输入
  64. printf(" is not an integer.\nPlease enter an");
  65. printf("integer value, such as 25, -178, or 3: ");
  66. }
  67. return input;
  68. }
  69.  
  70. double sum_squares(long a, long b)
  71. {
  72. double total = 0;
  73. long i;
  74. for (i = a; i <= b; i++)
  75. total += (double)i * (double)i;
  76. return total;
  77. }
  78.  
  79. bool bad_limits(long begin, long end, long low, long high)
  80. {
  81. bool not_good = false;
  82. if (begin > end)
  83. {
  84. printf("%ld isn't smaller than %ld.\n", begin, end);
  85. not_good = true;
  86. }
  87. if (begin < low || end < low)
  88. {
  89. printf("Values must be %ld or greater.\n", low);
  90. not_good = true;
  91. }
  92. if (begin > high || end > high)
  93. {
  94. printf("Values must be %ld or less.\n", high);
  95. not_good = true;
  96. }
  97. return not_good;
  98. }

getchar()和putchar()每次只处理一个字符。

示例:获取从键盘输入的字符,并把这些字符发送到屏幕

  1. //Visual Studio中加上这句才可以使用scanf()
  2. //否则只能使用scanf_s()
  3. #define _CRT_SECURE_NO_WARNINGS
  4. #include <stdio.h>
  5. //argc: 参数个数 argv[]: 参数数组
  6. int main(int argc, char *argv[])
  7. {
  8. char ch = 'a';
  9. //循环读取键盘输入的字符,并存入缓冲区
  10. //当按下回车后输出到屏幕
  11. while ((ch = getchar()) != '#')
  12. putchar(ch);//存入缓冲区,按回车后输出到屏幕
  13.  
  14. system("pause");
  15. return 0;
  16. }
运行测试
11111.png


缓冲区
缓冲分两类:
完全缓冲I/O和行缓冲I/O。完全缓冲输入指的是当缓冲区被填满时才刷新缓冲区(内容被发至目的地),通常出现在文件输入中。缓冲区的大小取决于系统,常见的大小是512字节和4096字节。行缓冲I/O指的是在出现换行符时刷新缓冲区。键盘输入通常是行缓冲输入,所以在按下Enter键后才刷新缓冲区。是否能进行无缓冲输入取决于计算机系统

示例:文件结尾符EOF(End Of File)

  1. //Visual Studio中加上这句才可以使用scanf()
  2. //否则只能使用scanf_s()
  3. #define _CRT_SECURE_NO_WARNINGS
  4. #include <stdio.h>
  5.  
  6. //argc: 参数个数 argv[]: 参数数组
  7. int main(int argc, char *argv[])
  8. {
  9. //EOF(End Of File)在stdio.h中被定义#define EOF (-1)
  10. //MS-DOS中会将行首的Ctrl+Z识为结尾符EOF
  11. //UNIX和Linux中,会将行首的Ctrl+D识别为结尾符
  12. //还有一些其他系统会将任意位置的Ctrl+Z识别为结尾符
  13. int ch;
  14. while ((ch = getchar()) != EOF)
  15. {
  16. putchar(ch);
  17. }
  18.  
  19. system("pause");
  20. return 0;
  21. }
运行测试

11111.png

重定向输入输出
示例:在CMD中运行上例生成的exe文件
< 符号为重定向输入;> 符号为重定向输出
1111.png
重定向运算符不区别先后,以下两句都是正确的:
CCC.exe < in.txt > out.txt
CCC.exe > out.txt < in.txt
注意: 一些系统要求重定向运算符左侧要有一个空格,右侧没有空格。而其他系统(如,UNIX)允许在重定位运算符两侧有空格或没空格。

示例:输入验证 

  1. //Visual Studio中加上这句才可以使用scanf()
  2. //否则只能使用scanf_s()
  3. #define _CRT_SECURE_NO_WARNINGS
  4. #include <stdio.h>
  5. #include <stdbool.h>
  6.  
  7. // 验证输入是一个整数
  8. long get_long(void);
  9. // 验证范围的上下限是否有效
  10. bool bad_limits(long begin, long end, long low, long high);
  11. // 计算a~b之间的整数平方和
  12. double sum_squares(long a, long b);
  13.  
  14. //argc: 参数个数 argv[]: 参数数组
  15. int main(int argc, char *argv[])
  16. {
  17. const long MIN = -10000000L; // 范围的下限
  18. const long MAX = +10000000L; // 范围的上限
  19. long start; // 用户指定的范围最小值
  20. long stop; // 用户指定的范围最大值
  21. double answer;
  22.  
  23. printf("This program computes the sum of the squares of "
  24. "integers in a range.\nThe lower bound should not "
  25. "be less than -10000000 and \nthe upper bound "
  26. "should not be more than +10000000.\nEnter the "
  27. "limits (enter 0 for both limits to quit):\n"
  28. "lower limit: ");
  29. start = get_long();
  30. printf("upper limit: ");
  31. stop = get_long();
  32. while (start != 0 || stop != 0)
  33. {
  34. if (bad_limits(start, stop, MIN, MAX))
  35. printf("Please try again.\n");
  36. else
  37. {
  38. answer = sum_squares(start, stop);
  39. printf("The sum of the squares of the integers ");
  40. printf("from %ld to %ld is %g\n", start, stop, answer);
  41. }
  42. printf("Enter the limits (enter 0 for both "
  43. "limits to quit):\n");
  44. printf("lower limit: ");
  45. start = get_long();
  46. printf("upper limit: ");
  47. stop = get_long();
  48. }
  49. printf("Done.\n");
  50.  
  51. system("pause");
  52. return 0;
  53. }
  54.  
  55. long get_long(void)
  56. {
  57. long input;
  58. char ch;
  59. //scanf返回正确读入的个数
  60. while (scanf("%ld", &input) != 1)
  61. {
  62. while ((ch = getchar()) != '\n')
  63. putchar(ch); //处理错误输入
  64. printf(" is not an integer.\nPlease enter an");
  65. printf("integer value, such as 25, -178, or 3: ");
  66. }
  67. return input;
  68. }
  69.  
  70. double sum_squares(long a, long b)
  71. {
  72. double total = 0;
  73. long i;
  74. for (i = a; i <= b; i++)
  75. total += (double)i * (double)i;
  76. return total;
  77. }
  78.  
  79. bool bad_limits(long begin, long end, long low, long high)
  80. {
  81. bool not_good = false;
  82. if (begin > end)
  83. {
  84. printf("%ld isn't smaller than %ld.\n", begin, end);
  85. not_good = true;
  86. }
  87. if (begin < low || end < low)
  88. {
  89. printf("Values must be %ld or greater.\n", low);
  90. not_good = true;
  91. }
  92. if (begin > high || end > high)
  93. {
  94. printf("Values must be %ld or less.\n", high);
  95. not_good = true;
  96. }
  97. return not_good;
  98. }
运行测试
11111.png


标签: C语言

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号