鱼C论坛

 找回密码
 立即注册
查看: 2320|回复: 3

[已解决]怎么让字符输出换行输出

[复制链接]
发表于 2019-5-3 17:04:43 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
本帖最后由 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出错
最佳答案
2019-5-3 18:01:36
输出字符后,用printf再输出一个换行就可以了
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2019-5-3 18:01:36 | 显示全部楼层    本楼为最佳答案   
输出字符后,用printf再输出一个换行就可以了
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2019-5-3 18:12:12 | 显示全部楼层
MMp,这么简单我咋就没想到
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 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>

谢谢啦
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-17 04:08

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表