“Java à Python” Réponses codées

Java à Python

import javax.swing.*;

public class Exe4{
	//metodo para calculo de Potencia
public static int exp(int n1,int n2)   
{
	int i=0, total=0;
	
	while(i<=n2)
	{
			total = n1*n2;	
			i++;
	}
	return total; 
    
}
  
       
	//metodo principal
	public static void main(String args[]){
		//Declaração de Variáveis
		int num1, num2;
		
		//Entrada de Dados do Usuário
		num1 = Integer.parseInt(JOptionPane.showInputDialog("Digite um número"));  
		num2 = Integer.parseInt(JOptionPane.showInputDialog("Digite outro número"));  
		
		//Exibição dos dados
		
		JOptionPane.showMessageDialog(null, exp(num1,num2));
		
	}
	
}
Victorious Vole

Java à Python

package myproject;

import java.util.Scanner;

public class SEGP {

	public static void main(String[] args) {
		int n,j=0;
		Scanner sc=new Scanner(System.in);
		n=sc.nextInt();
		int a[]=new int[n+1]; 
		int b[] = new int[n];
		for(int i=0;i<n;i++)
			a[i]=sc.nextInt();

		for(int i=0;i<n;i++)
		{
			if(a[i]<a[i+1])
			{
				b[j]= a[i+1];
				j++;
			}
		}
	    	b[j]=a[n-1];
		for(int i=0;i<j+1;i++)
			System.out.print(b[i]+" ");
        sc.close();
	}

}
Poor Pig

Java à Python

package com.company;
import java.util.Scanner;
import java.util.Arrays;

public class Main {
    public static void main(String[] args) {
   // write your code here
        int key1 =0;
        int key2 =0;
        int key33 = 0;
        int KEY;
        int[] key3 = new int[4];

        Scanner girdi = new Scanner(System.in);
        System.out.println("Please write 1000 <= input1 <= 9999 ");
        int input1 = girdi.nextInt;
        System.out.println("Please write 1000 <= input2 <= 9999 ");
        int input2 = girdi.nextInt;
        System.out.println("Please write 1000 <= input3 <= 9999 ");
        int input3 = girdi.nextInt;

        while(input1 >= 1000) {
            input1 = input1 - 1000;
            input1 = input1;
        }
        while(input1 >= 100) {
            input1 = input1 - 100;
            key1 = key1 + 1;
        }
        while(input2 >= 100) {
            input2 = input2 - 100;
            input2 = input2;
        }
        while(input2 >= 10) {
            input2 = input2 - 10;
            key2 = key2 + 1;
        }

        key3[0]=input3/1000;  
        input3=input3-(1000*key3[0]);

        key3[1]=input3/100;   
        input3=input3-(100*key3[1]);

        key3[2]=input3/10;    
        input3=input3-(10*key3[2]);

        key3[3]=input3;     

        key33 = Arrays.stream(key3).max.getAsInt;

        KEY = (key1 * key2) - key33;

        System.out.println("Hundreds digit of input1 = " + key1);
        System.out.println("Tens digit of input2 = " + key2);
        System.out.println("Largest digit of input3 = " + key33);
        System.out.println("KEY = " + KEY);
        
    }
}
Precious Puffin

Java à Python

import javax.swing.*;

public class Exe4{
	//metodo para calculo de Potencia
public static int exp(int n1,int n2)   
{
	int i=0, total=0;
	
	while(i<=n2)
	{
			total = n1*n2;	
			i++;
	}
	return total; 
    
}
  
       
	//metodo principal
	public static void main(String args[]){
		//Declaração de Variáveis
		int num1, num2;
		
		//Entrada de Dados do Usuário
		num1 = Integer.parseInt(JOptionPane.showInputDialog("Digite um número"));  
		num2 = Integer.parseInt(JOptionPane.showInputDialog("Digite outro número"));  
		
		//Exibição dos dados
		
		JOptionPane.showMessageDialog(null, exp(num1,num2));
		
	}
	
}
Victorious Vole

Java à Python

package myproject;

import java.util.Scanner;

public class SEGP {

	public static void main(String[] args) {
		int n,j=0;
		Scanner sc=new Scanner(System.in);
		n=sc.nextInt();
		int a[]=new int[n+1]; 
		int b[] = new int[n];
		for(int i=0;i<n;i++)
			a[i]=sc.nextInt();

		for(int i=0;i<n;i++)
		{
			if(a[i]<a[i+1])
			{
				b[j]= a[i+1];
				j++;
			}
		}
	    	b[j]=a[n-1];
		for(int i=0;i<j+1;i++)
			System.out.print(b[i]+" ");
        sc.close();
	}

}
Poor Pig

Java à Python

public class PlusMinus {
	public static void main(String[] args) {
		Scanner in = new Scanner(System.in);
		int n = in.nextInt();
		int arr[] = new int[n];
		float countPositive = 0;
		float countNegetive = 0;
		float countZero = 0;
		for (int arr_i = 0; arr_i < n; arr_i++) {
			arr[arr_i] = in.nextInt();
			if (arr[arr_i] < 0) {
				countNegetive++;
			}
			if (arr[arr_i] > 0) {
				countPositive++;
			}
			if (arr[arr_i] == 0) {
				countZero++;
			}
		}
		System.out.printf("%1.6f \n", countPositive / n);
		System.out.printf("%1.6f \n", countNegetive / n);
		System.out.printf("%1.6f \n", countZero / n);
		in.close();
	}
}
SHEETAL DUKKI

Réponses similaires à “Java à Python”

Questions similaires à “Java à Python”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code