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
http://www.atknuludag.com/csharp/683-c-ile-dosya-ve-klasor-islemleri.html | |
http://www.emrahakin.info/2009/04/c-openfiledialog-kontrolu.html#.U8OJMpR_tA0 //dizin ile ilgili işlemler | |
http://www.sanalkurs.net/c-ile-directory-islemleri-7606.html //dizin ile ilgili işlemler | |
http://www.csharpnedir.com/articles/read/?id=26 //dosya ile ilgili işlemler |
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
int led = 13; | |
void setup() { | |
pinMode(led, OUTPUT); //Program ilk çalıştırıldığında led olarak tanımladığımız 13. pin çıkış pini olarak ayarlandı. | |
} | |
void loop() { | |
digitalWrite(led, HIGH); //Işığın yanmasını sağlıyor. | |
delay(1000); //Gecikme süresi | |
digitalWrite(led, LOW); //Işığın sönük kalmasını sağlıyor. |
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 java.util.ArrayList; | |
import javax.swing.JOptionPane; | |
import java.awt.Component; | |
//import java.math.BigInteger; | |
import java.math.*; | |
import java.util.Arrays; | |
import java.util.List; | |
public class Deneme { | |
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 mobil_uygulama_rsa; | |
import java.util.ArrayList; | |
import javax.swing.JOptionPane; | |
public class Sifreleme { | |
static ArrayList<Character> mesaj_karakter = new ArrayList<Character>(); | |
static ArrayList<Integer> mesaj_ascii = new ArrayList<Integer>(); | |
static ArrayList<Integer> donusturulmus_sayisal_mesaj = new ArrayList<Integer>() ; |
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
function Uydurma | |
N = input('adim sayisini giriniz:\n'); | |
x = input('x degerlerini giriniz:\n'); %kullanıcıdan i, xi, yi bilgilerini alan kısım | |
y = input('y degerlerini giriniz:\n'); | |
fprintf('\n\n\n'); | |
disp('...COZUM...'); | |
fprintf('\n'); %soruda verilen xi ve yi değerlerinin kullanıcıdan girilmesini istediği yer. | |
fprintf('x matrisi:'); %xi sayıları dizi içerisinde ve aralarında virgül olacak şekilde yazılmalı. [-10,-5,-2,...] |
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.rzydn.rsa.Sifreleme; | |
import java.util.Scanner ; | |
import java.math.BigInteger; | |
import java.util.ArrayList; | |
public class Sifreleme { | |
static BigInteger n,tolient_n ; | |
static int p,q,E,i,ascii_int,indis; |
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 kitap.bolum10.nyp; | |
import javax.swing.JOptionPane ; | |
public class Insan_JOptionPane { | |
static double boy ; | |
static String isim, cinsiyet, boyS, yasS ; | |
static int yas ; | |
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 kitap.bolum10.nyp; | |
import java.util.Scanner ; | |
public class Insan { // Insan adında bir sınıf oluşturuldu. | |
static double boy ; // | |
static String cinsiyet ; // Sınıfa ait özellikler | |
static int yas ; // | |
static String isim ; // |
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.rzydn.rsa.SayiIste; | |
import javax.swing.JOptionPane ; | |
public class SayiIste { | |
static int p,q ; | |
static boolean durum = true ; | |
static int sayi_al1(){ |
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.rzydn.rsa.SayiIste; | |
import javax.swing.JOptionPane ; | |
public class SayiIste { | |
static int p,q ; | |
static void sayi_al(){ | |
NewerOlder