1 solutions

  • 0
    @ 2025-11-5 15:11:04

    C :

    #include<stdio.h>
    int main(){
    char c[4]="BOY";
    for(int i=0;i<3;i++)
      putchar(c[i]);
    putchar('\n');
    	return 0;
    }
    

    C++ :

    #include <stdio.h>
    int main() {
    	char a, b, c;
    	a = 'B'; b = 'O'; c = 'Y';
    	putchar(a); putchar(b); putchar(c); putchar('\n');
    	return 0;
    }
    
    

    Pascal :

    begin
      writeln('BOY');
    end.
    
    

    Java :

    
    
    import java.util.Scanner;
    
    public class Main{	public static void main(String[] args) {
    		System.out.println("BOY");
    	}
    
    }
    
    

    Python :

    print "BOY"
    
    • 1

    Information

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