nenašel by se prosim někdo kdo by tenhle program dokazal předělat tak aby byl spustitelný v netbeans java aplication ? moc by mi to pomohlo děkuji
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.IO;
namespace jura888888
{
public partial class Form1 : Form
{
TextBox tb = new TextBox();
int[,] matrix = null;
int size = 0;
Random rnd = new Random();
/// <summary>
/// čau, mam problem se školnim projektem transpozice matice .
/// mělo by tam byt dvě matice jedna puvidnní druhá transponovaná ,
/// potom tlačítko na uložení na zadání velikosti matice o libovlne velikosti ,
/// a tlačitko na transponování matice , jednalo by se o prohození řádku a spoupcu . nenašel
/// by se někdo kdo by mi mohl post aspon se začátky nebo něco ví ? dik ..
/// </summary>
public Form1()
{
InitializeComponent();
AddButton("tlačítko na uložení", Ulozeni_Click);
AddButton("zadání velikosti matice o libovlne velikosti", Velikost_Click);
AddButton("tlačitko na transponování matice", Transponovani_Click);
tb.Parent = this;
tb.Multiline = true;
tb.Dock = DockStyle.Fill;
}
void AddButton(string text, EventHandler click)
{
var b = new Button();
b.Parent = this;
b.Text = text;
b.Dock = DockStyle.Bottom;
b.Click += click;
}
void Ulozeni_Click(object sender, EventArgs e)
{
if (size != 0)
using (var sr = new StreamWriter(@"r:\tmp\t.txt")) sr.WriteLine(tb.Text);
}
void Transponovani_Click(object sender, EventArgs e)
{
if (size == 0) return;
tb.Text = Dump(matrix) + "\r\nTransposed\r\n" + Dump(Transpose());
}
void Velikost_Click(object sender, EventArgs e)
{
size++;
matrix = new int[size, size];
for (int i = 0; i < size; i++)
for (int j = 0; j < size; j++)
matrix[i, j] = rnd.Next(10);
tb.Text = Dump(matrix);
}
string Dump(int[,] m)
{
var sb = new StringBuilder();
for (int i = 0; i < size; i++)
{
for (int j = 0; j < size; j++)
sb.AppendFormat("{0}\t", m[i, j]);
sb.AppendLine();
}
return sb.ToString();
}
int[,]Transpose()
{
var trn = new int[size, size];
for (int i = 0; i < size; i++)
for (int j = 0; j < size; j++)
trn[j, i] = matrix[i, j];
return trn;
}
}
}