1 solutions

  • 0
    @ 2025-11-5 20:15:45

    C :

    #include<stdio.h>
    
    int main()
    {
    	char a,b;
    	scanf("%c",&a);
    	b=a+32;
    	printf("%c",b);
    	return 0;
    }
    

    C++ :

    #include<stdio.h>
    
    int main()
    {
    	char a,b;
    	scanf("%c",&a);
    	b=a+('a'-'A');
    	printf("%c",b);
    	return 0;
    }
    
    • 1

    Information

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