本文介绍了我怎样才能在z之后再次打印abcd?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

接受字符C和正整数N作为输入。该程序必须从C开始打印N个字符。



边界条件:

1< = N< = 100



输入格式:

第一行包含由空格分隔的C和N.



输出格式:

第一行包含N个字符。



示例输入/输出1:

输入:

a 4



输出:

abcd



示例输入/输出2:

输入:

z 5



输出:

zabcd



我尝试过:



Accept a character C and a positive integer N as input. The program must print N characters starting from C.

Boundary Condition(s):
1 <= N <= 100

Input Format:
The first line contains C and N separated by space(s).

Output Format:
The first line contains N characters.

Example Input/Output 1:
Input:
a 4

Output:
abcd

Example Input/Output 2:
Input:
z 5

Output:
zabcd

What I have tried:

#include<stdio.h>
#include <stdlib.h>

int main()
{
    char a;
    int n,b=0;
    scanf("%c",&a);
    scanf("%d",&n);
    for( char i=a;b<n;i++){
        printf("%c",i);
        b=b+1;
    }
}

推荐答案

for (int i = 0; i < n; i++) {
    printf("%c", (a - 'a' + i) % 26 + 'a');
}


for (i=0; i<n; ++i)
{
  putchar(a);
  a = (a == 'z') ? 'a' : (a + 1);
}


for( int i=0;i<n;i++){ // count here
    printf("%c",a);
    if (a<'z') // set next letter here
        a=a+1;
    else
        a='a';
}


这篇关于我怎样才能在z之后再次打印abcd?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-03 04:53