python to java converter
print("heelo")
convert python to java
arr=[43,66,225,76]
for i in range(len(arr));
strr=str(arr[i])
if '6' in strr:
strr=strr[::-1]
#print(strr)
arr[i] = int(strr.replace('6','9'))
avg=sum(ar)/len(arr)
print(round(avg,2))
convert python to java
import check50
import check50_java
@check50.check()
def book_exists():
"""Book.java exists."""
check50.exists("Book.java")
@check50.check(book_exists)
def book_compiles():
"""Book.java compiles."""
check50_java.compile("Book.java")
@check50.check()
def press_exists():
"""Press.java exists."""
check50.exists("Press.java")
@check50.check(press_exists)
def press_compiles():
"""Press.java compiles."""
check50_java.compile("Press.java")
@check50.check()
def vm_exists():
"""VendingMachine.java exists."""
check50.exists("VendingMachine.java")
@check50.check(vm_exists)
def vm_compiles():
"""VendingMachine.java compiles."""
check50_java.compile("VendingMachine.java")
convert python to java
import networkx as nx
import matplotlib.pyplot as plt
FName="graph.txt"
GType=nx.Graph()
Graph = nx.read_edgelist(
FName,
create_using=GType,
node_type=int,
data=(('weight',float),)
)
# Find the total number of degree for each node
for g in Graph.nodes():
print("Node: ", g, " has total #degree: ",Graph.degree(x))
# Find the weight for each node
for t,y in Graph.edges():
print ("Weight of Edge ("+str(t)+","+str(y)+")", Graph.get_edge_data(t,y))
#degree centrality
degreecentrality=nx.degree_centrality(Graph)
print("\nDegree centrality of each node: ",degreecentrality)
#Closeness Centrality
closenesscentrality = nx.closeness_centrality(Graph)
print("\nCloseness centrality of each node: ",closenesscentrality)
#Betweenness Centrality
betweennesscentrality=nx.betweenness_centrality(Graph)
print("\nBetweenness centrality of each node: ",betweennesscentrality)
convert python to java
def rotate(l,n):
res=l[len(l)-n:len(l)]+l[0:len(l)-n]
return res
m=(int)(input())
mat=[]
for i in range(m):
l=(list)(map(str,input().split()))
mat.append(l)
ans=[]
#print(mat)
res=[]
for i in range(m):
r=(str)(mat[i])
s=r[2:len(r)-4]
nr=r[len(r)-3:len(r)-2]
vow=['a','e','i','o','u','A','E','I','O','U']
nr=(int)(ord(nr)-48)
k=rotate(s,nr)
#print(k)
x=''
for j in range(len(k)):
if k[j] not in vow and (j+1)%2==0:
x=x+k[j]
res.append(x)
c=0
for i in res:
if len(i)==0:
c+=1
if c==len(res):
print("-1")
else:
k=[]
if len(res)>0:
for i in res:
if len(i)==0:
pass
else:
k.append(i)
k=sorted(k,key=len)
ans=''
for i in k:
ans=ans+i+','
print(ans[0:len(ans)-1])
convert python code to java
import http
import ssl
from urllib.parse import urlparse
import requests
clientCrt = "/GDLAPPSPublicCertificate.cer"
clientKey = "/GDLAPPSPrivateCertificateKey.key"
url = "https://gdlapps.naturesweet.com/ws/simple/getDailyQualityYield"
request_url="/ws/simple/getDailyQualityYield"
method="GET"
headers = {'Content-type': 'application/json'}
body={}
context = ssl.SSLContext()
context.load_cert_chain(certfile=clientCrt,keyfile=clientKey)
connection = http.client.HTTPSConnection(urlparse(url).hostname, port=443, context=context)
connection.request(method=method, url=url,headers=headers,body=body)
response = connection.getresponse()
print(response.status, response.reason)
data = response.read()
print(data)
|