William Crusader
Hectopat
- Katılım
 - 11 Kasım 2020
 
- Mesajlar
 - 5.371
 
- Makaleler
 - 1
 
- Çözümler
 - 14
 
Daha fazla  
				
					
						
						
							
	
		
	
		
			
			
				
			
			
		
		
	- Cinsiyet
 - Erkek
 
- Meslek
 - Yok
 
Python ile ilgilenirken sıkıldığımı hissetmeye başladım, işleri biraz daha zorlaştırarak C#'e geçtim.
Kod:
	
	
	
	
	
		
Aldığım Kurs (bedava):
	
			
	
		
			
		
		
	
				
			Kod:
		C#:
	
	//mesaj bırakmayı sevmiyorum
using System;
namespace Job
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("Welcome to our job application app! Whats your name?");
            String Name = Console.ReadLine();
            Console.WriteLine("Great! Where do you live?");
            String Country = Console.ReadLine();
            Console.WriteLine("Excellent! Last thing, how old are you?");
            int Age = Convert.ToInt32(Console.ReadLine());
            Console.WriteLine("User 69 properties: ");
            Console.WriteLine("Name: " + Name);
            Console.WriteLine("Country: " + Country);
            Console.WriteLine("Age: " + Age);
            Console.WriteLine("Press any button to exit the program.");
            Console.ReadKey();
        }
    }
}
	Aldığım Kurs (bedava):