私の仕事は、入力を取得し、文字とASCII値を出力して、それぞれ8対1行で表示することです。入力するすべての入力に対して、改行文字の値も取得しているので、印刷したくありません。
これは私のコードです:
#include <stdio.h>
int main()
{
char ch;
int count = 0;
printf("please type an input:\n");
while ((ch = getchar()) != '#')
{
++count;
printf("%c=%d ", ch, ch);
if (count%8 == 0) printf("\n");
}
}