您当前的位置: 首页 > 

MangataTS

暂无认证

  • 0浏览

    0关注

    423博文

    0收益

  • 0浏览

    0点赞

    0打赏

    0留言

私信
关注
热门博文

AtCoder Beginner Contest 171 A - αlphabet

MangataTS 发布时间:2020-07-15 20:46:00 ,浏览量:0

A - αlphabet

Time Limit: 2 sec / Memory Limit: 1024 MB

Score : 100 points

Problem Statement

An uppercase or lowercase English letter αα will be given as input. If αα is uppercase, print A; if it is lowercase, print a.

Constraints
  • αα is an uppercase (A - Z) or lowercase (a - z) English letter.
Input

Input is given from Standard Input in the following format:

αα

Output

If αα is uppercase, print A; if it is lowercase, print a.

Sample Input 1 Copy
Copy
B

Sample Output 1 Copy
Copy
A

B is uppercase, so we should print A.

Sample Input 2 Copy
Copy
a

Sample Output 2 Copy
Copy
a

a is lowercase, so we should print a.

题意:输入一个字符,如果是大写字符输出 'A',如果是小写字符输出 'a'

代码如下:

#include
using namespace std;
int main(void)
{
    char c;
    while(~scanf("%c",&c))
    {
        getchar();
        if(c>='a'&&c='A'&&c            
关注
打赏
1665836431
查看更多评论
0.0346s