1 条题解

  • 0
    @ 2023-6-11 12:20:56

    C :

    #include<stdio.h>
    
    void main(){
    	int i,n;
    	scanf("%d",&n);
    	
    	i=1;
    	while(i<=n){
    		if(i%2==0&&i%3!=0){
    			printf("%d\n",i);
    		}
    		i++;
    	}
    	
    } 
    
    
    

    C++ :

    #include <iostream>
    using namespace std;
    
    int main(){
    	/* 
    	  第一步:输出1~n的每个数 
    	  第二步:判断该数是否满足条件(是2的倍数但非3的倍数) 
        */
    	 int i,n;
    	 cin>>n;
    	 i = 1;
    	 while(i <= n){
    	 	if(i % 2 == 0 && i % 3 != 0){
    	 		cout<<i<<endl;
    		}
    	 	
    	 	i++;
    	 } 
    }
    
    

    Java :

    import java.util.Scanner;
    
    public class Main {
    
    	public static void main(String[] args) {
    		Scanner sc = new Scanner(System.in);
    		int n = sc.nextInt();
    		for(int i=1;i<=n;i++) {
    			if(i%2==0 && i%3!=0) {
    				System.out.println(i);
    			}
    		}
    
    	}
    
    }
    

    Python :

    n = int(input())
    for i in range(1, n + 1):
        if i % 2 == 0 and i % 3 != 0:
            print(i)
    
    
    • 1

    【入门】输出是2的倍数,但非3的倍数的数

    信息

    ID
    2606
    时间
    1000ms
    内存
    64MiB
    难度
    (无)
    标签
    递交数
    0
    已通过
    0
    上传者