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
ı inspired this solution from https://daveismyname.blog/upload-multiple-files-with-a-single-input-with-html-5-and-php | |
main solution in this link,if you use bootstrap 4 you can see html elements | |
Bu sorunun temel çözümü yukarıdaki linktedir | |
bootstrap kullanarak html elementleri görebilirsiniz | |
<?php | |
güvenlik için bir fonksiyon/security function |
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
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
int main(int argc, char *argv[]) | |
{ | |
int i; | |
FILE *fp; | |
char str[60]; | |
int k; |
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
GDP growth:GDP growth in 2017 7.42%(up from 3.18 in 2016) | |
Unemployment:11.5% in October 2018 | |
Productivity:-%2.67 (down from %2.73 mar 2018) | |
Average Tr house price = 285.852 TL(endeksa ) | |
TR trade balance:-8.99% in 2017(down from -6.50 in 2016) | |
İnflation rate :january 2019: 20.35 % | |
National debt :28.31% in gdp(2016) | |
Goverment Budget deficit:-20.758.467(-1.50 % of gdp) | |
resources |
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
#include <stdio.h> | |
int main(int argc, char **argv) | |
{ | |
int i,k=6,l; | |
for(i=2;i<=6;i=i+2){ | |
k=6; | |
for(l=2;l<=4;l++){ |
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
#include<stdio.h> | |
int main(){ | |
int sayi,yuzler,onlar,birler; | |
printf("lütfen 3 haneli sayı giriniz \t"); | |
scanf("%d",&sayi); | |
if (sayi>999 && sayi <100) | |
{ |
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 main | |
import ( | |
"os" | |
"fmt" | |
) | |
func main() { |
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 main | |
//kullandığım kütüphaneler | |
import ( | |
"fmt" | |
"io" | |
"net/http" | |
"os" | |
"strings" | |
) |
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
#include<stdio.h> | |
int main() | |
{ | |
int ort; | |
char not; | |
printf("ortalama gir"); | |
scanf("%f",&ort); | |
switch(not){ |
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 Browser | |
import Html | |
import Html exposing (..) | |
import Html.Attributes exposing (..) | |
import Html.Events exposing (..) | |
-- MAIN | |
main: Html msg |
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 Browser | |
import Html exposing (map,text,Html,div,p,ul,button,input,h1,li,br,h3 ) | |
import Html.Attributes exposing (value,type_ ,checked,class,style) | |
import Html.Events exposing (onClick,onInput) | |
import Element exposing (..) | |
import Element.Background as Background | |
import Element.Border as Border | |
import Element.Font as Font | |
import Element.Input as Input | |
import Element.Region as Region |
OlderNewer