zoukankan      html  css  js  c++  java
  • "尚学堂杯"哈尔滨理工大学第七届程序设计竞赛——Hrbust2330 Final Ugly English

    Final Ugly English
    Time Limit: 1000 MS Memory Limit: 32768 K
    Total Submit: 52(15 users) Total Accepted: 19(15 users) Rating: Special Judge: No
    Description
    ACM twist-toy encountered such a problem in the work, this article, to ensure that this article only lowercase letters

    and spaces, please send the articles in each word inverted output, such as “hello world this is an competition”. You

    should output “olleh dlrow siht si na noititepmoc”.

    Input
    A group of data, each line of data input from the lower case letters and spaces of the article, the length of not more than one thousand

    Output
    Output a line for each word after the reversal of the article.
    Sample Input
    hello world this is an competition
    Sample Output
    olleh dlrow siht si na noititepmoc

    大概意思就是直接调转每个单词

    #include<stdio.h>
    #include<string.h>
    int main()
    {
        char a[1008],b[1008];
        int i;
        while(gets(a))
        {
            int n=strlen(a);
            int flag=0;
            for(i=0; i<n; i++)
            {
                if(a[i]!=' ')
                {
                    b[flag++]=a[i];
                }
                else///再次遇到空格的时候,因为flag被初始化为0了,且遇到单词字母前不会再增加
                {
                    for(int j=flag-1; j>=0; j--)
                    {
                        printf("%c",b[j]);
                    }
                    flag=0;
                    printf("%c",a[i]);///把空格输出来
                }
            }
            for(i=flag-1; i>=0; i--)///最后一个单词
            {
                printf("%c",b[i]);
            }
            printf("
    ");
        }
        return 0;
    }
    
  • 相关阅读:
    vue中实现后台管理路由标签页
    vue实现侧边导航栏
    node学习(-)
    javascript面试题(二)
    尾递归(简要)
    javascript面试题(一)
    Windows平台基于RTMP实现一对一互动直播
    如何实现RTMP推送Android Camera2数据
    Windows平台RTMP/RTSP直播推送模块设计和使用说明
    如何设计一款跨平台低延迟的RTMP/RTSP直播播放器
  • 原文地址:https://www.cnblogs.com/kuronekonano/p/11794361.html
Copyright © 2011-2022 走看看