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
#include <stdlib.h> | |
#include <stdio.h> | |
#include <string.h> | |
int main(void) | |
{ | |
myswap(); | |
} | |
int myswap(void) | |
{ |
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
#include <stdio.h> | |
#include <string.h> | |
int main() | |
{ | |
int a=0, b=0, c=0; | |
char cumle[9999], kontrol[9999]; | |
puts("stringi gir bakalim\n"); | |
scanf("%s", cumle); |
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
#!/usr/bin/python | |
#-*- coding: utf-8 -*- | |
import random | |
import math | |
def printRandomNumbers(y): | |
status = range(1, y) | |
while len(status) == y: | |
i = 0 |
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
#include <stdio.h> | |
#include <stdlib.h> | |
#include <time.h> | |
int printRandomNumbers(int limit) { | |
char status[limit]; | |
int i, j, sayac, random, k; | |
for(i = 0; i<limit; i++) | |
status[i] = 'f'; |
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
from graphics import* | |
colormap = ['blue','yellow','green'] | |
win = GraphWin("MyCircle", 900, 900) | |
def tiny(x, y, r): | |
c = Circle(Point((x-r), y), r/2) | |
c.draw(win) | |
c.setFill(colormap[0]) | |
d = Circle(Point((x+r), y), r/2) |
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
module KRONOMETRE (CLOCK_50, KEY, HEX7,HEX6,HEX5,HEX4,HEX3,HEX2, HEX1); | |
/******************************************************************/ | |
/**** PORT TANIMLAMALARI ****/ | |
/******************************************************************/ | |
input CLOCK_50; | |
input [3:0] KEY; | |
output [0:6] HEX7,HEX6,HEX5,HEX4,HEX3,HEX2, HEX1; | |
/******************************************************************/ | |
/**** WIRE TANIMLAMALARI,,, ****/ |
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
import java.util.Scanner; | |
public class Diziler { | |
private static Scanner scan; | |
public static void diziyap(String[] args) { | |
scan = new Scanner(System.in); | |
System.out.print("boyut girsene\n"); | |
String[] dizi = new String[scan.nextInt()]; | |
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
public class siralaortala { | |
//ZİNNUR YEŞİLYURT !!! | |
/** | |
* @param args | |
*/ | |
static int[] BuyuktenKucuge(int[] arr) { //insertion sort algoritmasını gerçeledim. | |
int i, j, yenideger; | |
for (i = 1; i < arr.length; i++) { |
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
public class Kisi { | |
//ZİNNUR YEŞİLYURT !!! | |
private static String ad, soyad, dogumtarihi; | |
public static void uyur() { | |
System.out.print("Ben uyuyorum!!!"); | |
} | |
public static void gezer() { | |
System.out.print("Gezmeye çıktım gidiyorum !!!"); | |
} |
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
#include <stdio.h> | |
#include <stdlib.h> | |
#include <unistd.h> | |
#include <string.h> | |
#include <errno.h> | |
#include <signal.h> | |
#include <sys/types.h> | |
#include <sys/wait.h> | |
#define BUFFER_SIZE 1<<16 | |
#define ARR_SIZE 1<<16 |