1 solutions

  • 0
    @ 2025-11-5 19:39:28

    C :

    #include <stdio.h>
    int main()
    {
    	char c;
        scanf("%c",c);
        if(c>='A'&&c<='Z')
        printf("false");
        else
        printf("true");
    }
    
    

    C++ :

    #include<stdio.h>
    void pro(char ch1)
    {
        if(ch1>=65&&ch1<=90)
              printf("true\n");
        else printf("false\n");
    }
     
    int main()
    {
       char ch;
       scanf("%c",&ch);
       pro(ch);
    return 0;
    }
    

    Pascal :

    program xx;
    var ch:char;
    begin
    read(ch);
    if(ord(ch)>=65) and(ord(ch)<=90)
      then writeln('true')
      else writeln('false');
    end.
    
    • 1

    Information

    ID
    19508
    Time
    1000ms
    Memory
    128MiB
    Difficulty
    (None)
    Tags
    # Submissions
    0
    Accepted
    0
    Uploaded By