bin554385863 发表于 2019-5-3 17:04:43

怎么让字符输出换行输出

本帖最后由 bin554385863 于 2019-5-3 17:06 编辑

#include<stdio.h>
#include<conio.h>
void main()
{
    char ch1,ch2;
    ch1=getch();//读取键盘输入的字符存在缓冲区且不在屏幕显示
    ch2=getchar();//读取键盘输入的字符存在缓冲区且显示在屏幕上
    putch(ch1);//从缓冲区读取数据并显示在屏幕上
    putchar(ch2);//将ch2的值输出在屏幕上
    printf("\nch1=%c\nch2=%c\n",ch1,ch2);
}

PS E:\Administrator\Documents\Visual Studio 2019> & 'c:\Users\Administrator\.vscode\extensions\ms-vscode.cpptools-0.22.1\debugAdapters\bin\WindowsDebugLauncher.exe' '--stdin=Microsoft-MIEngine-In-bwj0skrg.cfk' '--stdout=Microsoft-MIEngine-Out-avojxbrr.ffe' '--stderr=Microsoft-MIEngine-Error-dsjapnvo.4m4' '--pid=Microsoft-MIEngine-Pid-pxcv1cph.jr1' '--dbgExe=E:\MingGW\bin\gdb.exe' '--interpreter=mi'
2
12//没有换行都挤一块了
ch1=1
ch2=2
PS E:\Administrator\Documents\Visual Studio 2019>

#include<stdio.h>
#include<conio.h>
void main()
{
    char ch1,ch2;
    ch1=getch();//读取键盘输入的字符存在缓冲区且不在屏幕显示
    ch2=getchar();//读取键盘输入的字符存在缓冲区且显示在屏幕上
    putch(ch1)/n;//从缓冲区读取数据并显示在屏幕上
    putchar(ch2);//将ch2的值输出在屏幕上
    printf("\nch1=%c\nch2=%c\n",ch1,ch2);
}

e:\Administrator\Documents\Visual Studio 2019\Second Chapter\gCharOfPutandGet2-25.c:9:16: error: 'n' undeclared (first use in this function)
   putch(ch1)/n;//浠01;31m^
e:\Administrator\Documents\Visual Studio 2019\Second Chapter\gCharOfPutandGet2-25.c:9:16: note: each undeclared identifier is reported only once for each function it appears in
终端进程已终止,退出代码: 1

怎么能让它换行输出,\n出错

shake_a_tree@16 发表于 2019-5-3 18:01:36

输出字符后,用printf再输出一个换行就可以了

bin554385863 发表于 2019-5-3 18:12:12

MMp,这么简单{:9_220:}我咋就没想到

bin554385863 发表于 2019-5-3 18:12:57

//字符输入输出函数的用法
#include<stdio.h>
#include<conio.h>
void main()
{
    char ch1,ch2;
    ch1=getch();//读取键盘输入的字符存在缓冲区且不在屏幕显示
    ch2=getchar();//读取键盘输入的字符存在缓冲区且显示在屏幕上
    putch(ch1);//从缓冲区读取数据并显示在屏幕上
    printf("\n");
    putchar(ch2);//将ch2的值输出在屏幕上
    printf("\nch1=%c\nch2=%c\n",ch1,ch2);
}

                                             > & 'c:\Users\Administrator\.vscode\extensions\ms-vscode.cpptools-0.22.1\debugAdapters\bin\WindowsDebugLauncher.exe' '--stdin=Microsoft-MIEngine-In-jigkrari.f3t' '--stdout=Microsoft-MIEngine-Out-eaubwoxf.aau' '--stderr=Microsoft-MIEngine-Error-0bks4lkt.4mk' '--pid=Microsoft-MIEngine-Pid-jtcwfukk.wnr' '--dbgExe=E:\MingGW\bin\gdb.exe' '--interpreter=mi'
2.
1
2
ch1=1
ch2=2
PS E:\Administrator\Documents\Visual Studio 2019>

谢谢啦
页: [1]
查看完整版本: 怎么让字符输出换行输出