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
import 'package:flutter/material.dart'; | |
void main() { | |
runApp(const MyApp()); | |
} | |
class MyApp extends StatelessWidget { | |
const MyApp({super.key}); | |
// This widget is the root of your application. |
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
namespace TestJalaSoft | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
string[] stringNumbers = new string[] { "13", "11", "9", "10", "12", "15" }; | |
int[] numbers = new int[stringNumbers.Length]; | |
for (int i = 0; i < numbers.Length; i++) |