| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 1025 人关注过本帖, 1 人收藏
标题:如何多行输入并且输入后执行
取消只看楼主 加入收藏
裘Pluto
Rank: 2
等 级:论坛游民
帖 子:6
专家分:11
注 册:2016-11-25
结帖率:100%
收藏(1)
已结贴  问题点数:10 回复次数:1 
如何多行输入并且输入后执行
图片附件: 游客没有浏览图片的权限,请 登录注册
搜索更多相关主题的帖子: 如何 
2016-12-01 12:32
裘Pluto
Rank: 2
等 级:论坛游民
帖 子:6
专家分:11
注 册:2016-11-25
收藏
得分:0 
谢谢ldsh304  marlow  炎天  九转星河  client苏
你们给的代码我都好好看了

int main()
{
    char str2[30][31];
    char temp;
    int len;
    int i=0;
    int j=0;
    while(gets(str2[i])!=NULL)           //取一行的字符串
    {
        len=strlen(str2[i]);
        for(j=0; j<len/2; j++)                      //将首尾互换
        {                                           //
             temp = str2[i][j];                     //
             str2[i][j] = str2[i][len-1-j];         //
             str2[i][len-1-j] = temp;               //
        }
        i++;                                        //下一行
    }
    for(j=i-1;j>=0;j--)                             //以ctrl+c结束
    {
        printf("%s\n",str2[j]);                     //输出逆反后的数组
    }
    return 0;
}

-----------------------------------------------分割线-------------------------1

char ch[31];
while ((gets(ch)) != null)         //取一行的字符串
{
    int len = strlen(ch);          //strlen(ch)取字符串长度(到'\0'结束
    for (int i = 0; i <= len/2; i++)//将数组逆反
    {
        char temp = ch[i];
        ch[i] = ch[len-i-1];
        ch[count-i-1] = temp;
    }
}

-----------------------------------------------分割线-------------------------2

#include <stdio.h>
#include <string.h>
#define MAXLINE 30

int main(void)
{
    char ch[MAXLINE];
    int n;

    while(gets(ch) != NULL)   //读取字符串
    {
        n = strlen(ch);   
        for(; n > 0; n--)
            printf("%c", ch[n - 1]);    //逆反输出
    }

    return 0;
这是我的理解
但是
#include<stdio.h>
void fun()
{
    char ch;

    if (scanf("%c",&ch)!=EOF)
        fun();

    if (ch!='\0')
        printf("%c",ch);
}
int main()
{
    fun();

    printf("\n");

    return 0;
}这个代码的将数组反输出在哪?
(指针还没学,我以后在回过来看)
2016-12-02 17:13
快速回复:如何多行输入并且输入后执行
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.023675 second(s), 10 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved