import androidx.appcompat.app.AppCompatActivity; import android.os.Bundle; import android.view.View; import android.widget.Button; import android.widget.TextView; import android.widget.Toast; public class MainActivity extends AppCompatActivity { private Button[][] buttons = new Button[3][3]; private boolean player1Turn = true; private int roundCount; private TextView textView; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); textView = findViewById(R.id.textView); for (int i = 0; i < 3; i++) { for (int j = 0; j < 3; j++) { String buttonID = "button" + i + j; int resID = getResources().getIdentifier(buttonID, "id", getPackageName()); buttons[i][j] = findViewById(resID); buttons[i][j].setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { if (!((Button) v).getText().toString().equals("")) { return; } if (player1Turn) { ((Button) v).setText("X"); } else { ((Button) v).setText("O"); } roundCount++; if (checkForWin()) { if (player1Turn) { textView.setText("Player 1 wins!"); } else { textView.setText("Player 2 wins!"); } gameOver(); } else if (roundCount == 9) { textView.setText("It's a draw!"); gameOver(); } else { player1Turn = !player1Turn; } } }); } } } private boolean checkForWin() { for (int i = 0; i < 3; i++) { if (buttons[i][0].getText().toString().equals(buttons[i][1].getText().toString()) && buttons[i][0].getText().toString().equals(buttons[i][2].getText().toString()) && !buttons[i][0].getText().toString().equals("")) { return true; } } for (int i = 0; i < 3; i++) { if (buttons[0][i].getText().toString().equals(buttons[1][i].getText().toString()) && buttons[0][i].getText().toString().equals(buttons[2][i].getText().toString()) && !buttons[0][i].getText().toString().equals("")) { return true; } } if (buttons[0][0].getText().toString().equals(buttons[1][1].getText().toString()) && buttons[0][0].getText().toString().equals(buttons[2][2].getText().toString()) && !buttons[0][0].getText().toString().equals("")) { return true; } if (buttons[0][2].getText().toString().equals(buttons[1][1].getText().toString()) && buttons[0][2].getText().toString().equals(buttons[2][0].getText().toString()) && !buttons[0][2].getText().toString().equals("")) { return true; } return false; } private void gameOver() { for (int i = 0; i < 3; i++) { for (int j = 0; j < 3; j++) { buttons[i][j].setEnabled(false); } } } public void resetGame(View view) { for (int i = 0; i < 3; i++) { for (int j = 0; j < 3; j++) { buttons[i
Write, Run & Share Kotlin code online using OneCompiler’s Kotlin online compiler for free. It’s a modern and fast online playground for Kotlin, supporting the latest version and ideal for learning, experimenting, and sharing code instantly.
Kotlin is a statically typed, modern programming language developed by JetBrains. It runs on the JVM and is fully interoperable with Java. Kotlin is concise, expressive, and safe, and it’s officially supported by Google for Android app development.
The following is a simple Kotlin program that prints a greeting:
fun main() {
println("Hello, OneCompiler!")
}
OneCompiler’s Kotlin editor supports stdin. You can provide input using the I/O tab. Here's a sample program that reads a line of input and prints a greeting:
fun main() {
print("Enter your name: ")
val name = readLine()
println("Hello, $name")
}
val name: String = "OneCompiler" // Immutable
var age: Int = 25 // Mutable
Kotlin supports type inference, so explicit types are optional:
val city = "Hyderabad"
var count = 10
val score = 85
if (score >= 50) {
println("Pass")
} else {
println("Fail")
}
for (i in 1..5) {
println(i)
}
var i = 1
while (i <= 5) {
println(i)
i++
}
var j = 1
do {
println(j)
j++
} while (j <= 5)
fun add(a: Int, b: Int): Int {
return a + b
}
fun greet(name: String) = "Hello, $name"
val items = listOf("apple", "banana", "cherry")
for (item in items) {
println(item)
}
This guide provides a quick reference to Kotlin programming syntax and features. Start coding in Kotlin using OneCompiler’s Kotlin online compiler today!