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.IO;//StreamReader kullanabilmek için ekledim. | |
| using System.Net;//webRequestleri kullanabilmek için gerekli. | |
| namespace MilliPiyango | |
| { | |
| class Piyango |
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
| package powellalgoritmasi; | |
| import java.io.*; | |
| import java.util.LinkedList; | |
| import java.util.ListIterator; | |
| class rota { | |
| public int numara; | |
| public int renk; |
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 static void randomizeQuickSort(int[] A,int solgelen, int saggelen) | |
| { | |
| int sol=solgelen,sag=saggelen, gecici; | |
| int pivot=A[(solgelen+saggelen)/2]; | |
| do{ | |
| while(A[sol]<pivot) | |
| sol++; | |
| while(A[sag]>pivot) | |
| sag--; | |
| if(sol<=sag) |
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
| tol=10^(-5); | |
| for x1=-2:.05:10 | |
| y=x1; | |
| yy=exp(-x1); | |
| plot(x1,y,'r*',x1,yy,'b*'); | |
| hold on | |
| xlabel('x'); | |
| ylabel('y'); | |
| grid on |
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
| private string _translationSpeakUrl; | |
| public string _editTarget; | |
| private void speechText(string answerText) | |
| { | |
| Translator t = new Translator(); | |
| this._editTarget = t.Translate(answerText.Trim(), "Turkish", "Turkish"); | |
| if (t.Error == null) | |
| { |
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
| package javaapplication1; | |
| public class JavaApplication1 { | |
| public static void main(String[] args) { | |
| System.out.println("Merhaba Dünya!"); | |
| } |
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
| requestMappingClassScope: /tnt | |
| Hibernate: select constant0_.id as id1_557_, constant0_.create_date as create_d2_557_, constant0_.firm_id as firm_id5_557_, constant0_.version as version3_557_, constant0_.constant_firm_id as constant6_557_, constant0_.constant_type_id as constant7_557_, constant0_.value as value4_557_ from constant constant0_ left outer join constant_type constantty1_ on constant0_.constant_type_id=constantty1_.id left outer join firm firm2_ on constant0_.firm_id=firm2_.id where constantty1_.name=? and firm2_.id=? | |
| SELECT e FROM ConstantType e WHERE (1=1) AND e.name = :name order by e.name | |
| name = TNT_AGENT_COMPANY | |
| Hibernate: select constantty0_.id as id1_558_, constantty0_.create_date as create_d2_558_, constantty0_.firm_id as firm_id8_558_, constantty0_.version as version3_558_, constantty0_.data_type_id as data_typ9_558_, constantty0_.defination as definati4_558_, constantty0_.description as descript5_558_, constantty0_.name as name6_558_, constantty0_.page_id as page_id10_558_, constantty0_. |
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 <iostream> | |
| /* run this program using the console pauser or add your own getch, system("pause") or input loop */ | |
| int main(int argc, char** argv) { | |
| int say1; | |
| printf("Sayi giriniz"); | |
| scanf("%d", &say1); | |
| printf("a\n"); | |
| for(int i=1;i<=say1;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
| // package com.furkan.odemeplani; | |
| // import java.math.BigDecimal; | |
| // import java.math.RoundingMode; | |
| // public class Main { | |
| // public static BigDecimal calculateYMO( | |
| // BigDecimal creditAmount, | |
| // int maturity, |
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
| package com.furkan.odemeplani; | |
| import java.math.BigDecimal; | |
| import java.math.MathContext; | |
| import java.math.RoundingMode; | |
| import java.time.LocalDate; | |
| import java.time.format.DateTimeFormatter; | |
| import java.util.ArrayList; | |
| import java.util.List; |
OlderNewer