-
Gave Reputation to Schol-R-LEA in how can i convert code from python to java ...i dont know python
If you don't mind me asking, why did you need to translate this particular piece of code? Keep in mind that, if this is an assignment, we can only give … -
Replied To a Post in how can i convert code from python to java ...i dont know python
public class Output2 { public static void main(String[] args) { int n = 10; for(int i=0;i<n;i++) { for(int j=0;j<n;j++) { if(i == j || n - j == i + … -
Gave Reputation to rproffitt in how can i convert code from python to java ...i dont know python
Even if you don't know Python, why can't you convert it line by line. For example, is line 1 a problem? -
Gave Reputation to rproffitt in how can i convert code from python to java ...i dont know python
Even if you don't know Python, why can't you convert it line by line. For example, is line 1 a problem? -
Edited how can i convert code from python to java ...i dont know python
size = 10 for i in range(size) : for j in range(size) : if(i == j or size - j == i + 1) : print("* ", end = "") … -
Created how can i convert code from python to java ...i dont know python
size = 10 for i in range(size) : for j in range(size) : if(i == j or size - j == i + 1) : print("* ", end = "") … -
Began Watching how can i convert code from python to java ...i dont know python
size = 10 for i in range(size) : for j in range(size) : if(i == j or size - j == i + 1) : print("* ", end = "") …