This file contains hidden or 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
| // atmintinė https://docs.google.com/document/d/1K9GQRF5N5pjGiUUrfWpVSkXM13LSWuG8IV4uorEKG3E/edit | |
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| using WpfApplication3_Finansai; // naudoja Babkes | |
| // reik suinstaliuot nuget paketą linq2db.mysql |
This file contains hidden or 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
| <a href="http://kaunascoding.lt">kur mes?</a><br> | |
| <?php | |
| echo "Hello, World"; | |
| // išsaugokite C:\xampp\htdocs\hello.php | |
| // ir atsidaryt naršyklę: localhost/hello.php | |
| // kintamieji | |
| $kiek = 10; | |
| $kiek++; |
This file contains hidden or 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
| <?php | |
| // patikrinti ar duomenys yra ir susikurti kintamuosius $name ir $msg | |
| // jiems priskirti tuščias eilutes, jei duomenys nepateikti... | |
| // if( array_key_exists("name", $_POST) ) | |
| // $name = $_POST[ "name" ]; | |
| // else $name = null; | |
| function get_info( $key ){ | |
| if( array_key_exists($key, $_POST) ) |
This file contains hidden or 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
| def table_template(table): | |
| from gluon.html import TR, TD, TABLE, TAG | |
| def FONT(*args, **kwargs): | |
| return TAG.font(*args, **kwargs) | |
| def types(field): | |
| f_type = field.type | |
| if not isinstance(f_type,str): | |
| return ' ' |
This file contains hidden or 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
| using System; | |
| class MainClass { | |
| public static void Main (string[] args) { | |
| int[] spejimai = new int[5]; // aprašome masyvą, kuriame galėsim saugoti 5 sveikus skaičius. | |
| Random rnd = new Random(); // atsitiktinių sk. generatorius | |
| for(int i=0; i<5; i++) // pagal eilės numerį: 0 1 2 3 4 | |
| { |
This file contains hidden or 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
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| namespace ConsoleApplication4_ChatBot | |
| { | |
| class Program | |
| { |
This file contains hidden or 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
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| namespace ConsoleApplication1_chatBot_dublis | |
| { | |
| class Program | |
| { |
This file contains hidden or 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
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| using System.Windows; | |
| using System.Windows.Controls; | |
| using System.Windows.Data; | |
| using System.Windows.Documents; | |
| using System.Windows.Input; |
This file contains hidden or 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
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| using System.Windows; | |
| using System.Windows.Controls; | |
| using System.Windows.Data; | |
| using System.Windows.Documents; | |
| using System.Windows.Input; |
This file contains hidden or 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
| using System; | |
| namespace BoxApplication | |
| { | |
| class Box | |
| { | |
| public double length; // Length of a box | |
| public double breadth; // Breadth of a box | |
| public double height; // Height of a box | |
| // Konstruktoriaus funkcija -- suteikia pradines reiksmes |
OlderNewer