蓝桥杯题—BASIC-1闰年判断 BASIC-2 01字串 BASIC-3 字母图形

BASIC-1闰年判断

问题描述:
蓝桥杯题—BASIC-1闰年判断 BASIC-2 01字串 BASIC-3 字母图形_第1张图片
BASIC-1闰年判断
C语言代码:
#include 

int main(){

        int a; 
        scanf("%d",&a);
        if(a%4==0&&a%100!=0||a%400==0){
            printf("yes");
        }else{
            printf("no");
        }
    return 0;
}
java代码:
import java.util.Scanner;

public class Main {
    
    public static void main(String[] args) {
        Scanner input = new Scanner(System.in);
        int a = input.nextInt();
        if(a%4==0&&a%100!=0||a%400==0){
            System.out.println("yes");
        }else{
            System.out.println("no");
        }
    }
}

BASIC-2 01字串

问题描述:
蓝桥杯题—BASIC-1闰年判断 BASIC-2 01字串 BASIC-3 字母图形_第2张图片
BASIC-2 01字串
C语言代码:
#include 
int main(){
        for(int i=0;i<2;i++){
            for(int j=0;j<2;j++){
                for(int a=0;a<2;a++){
                    for(int b=0;b<2;b++){
                        for(int c=0;c<2;c++){
                            printf("%d%d%d%d%d\n",i,j,a,b,c);
                        }
                    }
                }
            }
        }
    return 0;
}
Java代码:
public class Main{
    public static void main(String[] args) {
        for(int i=0;i<2;i++){
            for(int j=0;j<2;j++){
                for(int a=0;a<2;a++){
                    for(int b=0;b<2;b++){
                        for(int c=0;c<2;c++){
                            System.out.println(i+""+j+""+a+""+b+""+c);
                        }
                    }
                }
            }
        }
    }
}

BASIC-3 字母图形

问题描述:
蓝桥杯题—BASIC-1闰年判断 BASIC-2 01字串 BASIC-3 字母图形_第3张图片
BASIC-3 字母图形
C语言代码:
#include 
#include 

int main(){
 int i, j, n, m;  
    scanf("%d%d",&n,&m);
    for(i=1;i<=n;i++){
        for(j=1;j<=m;j++){
            char ss=(abs(i-j)+'A');//求绝对值
            printf("%c",ss);
        }
        printf("\n");
    }
    return 0;
}
Java代码:
import java.util.Scanner;

public class Main{
    public static void main(String[] args) {
        Scanner input = new Scanner(System.in);
        int n = input.nextInt();
        int m = input.nextInt();
        letter(n, m);
    }
    static void letter(int n,int m){
        char a='A';
        for(int i=1;i<=n;i++){
            for(int j=1;j<=m;j++){
                char ss=(char)(Math.abs(i-j)+a);//绝对值
                System.out.print(ss);
            }
            System.out.println();
        }
    }
}

你可能感兴趣的:(蓝桥杯题—BASIC-1闰年判断 BASIC-2 01字串 BASIC-3 字母图形)