This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//+------------------------------------------------------------------+ | |
//| operatoryArytmetyczne.mq4 | | |
//| Tomasz Waszczyk | | |
//| https://www.waszczyk.com | | |
//+------------------------------------------------------------------+ | |
#property copyright "Tomasz Waszczyk" | |
#property link "https://www.waszczyk.com" | |
#property version "1.00" | |
#property strict | |
//+------------------------------------------------------------------+ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Hej, | |
mam pytanie odnośnie kodu: | |
import java.io.BufferedReader; | |
import java.io.IOException; | |
import java.io.InputStream; | |
import java.io.InputStreamReader; | |
import org.apache.http.HttpEntity; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.waszczyk.staticlass; | |
public class A { | |
public class B { | |
int a; | |
int b; | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.waszczyk.interviewsample; | |
public class ArrayReverse { | |
public static void main(String[] args) { | |
int myarray[] = {1,2,3}; | |
reverseArray(myarray); | |
} |
NewerOlder