De.coder
472 subscribers
458 photos
44 videos
191 files
300 links
Download Telegram
در صورت امکان این برنامه را توسعه داده و ویژگی های آن را افزایش می دهیم😊
@de_coder
cpp_pro.[www.yasbooks.com].pdf
1.8 MB
برنامه سازی پیشرفته به زبان ++C
دانشگاه پیام نور
@de_coder
پروژه ی ساخت ماتریس 10 × 10 به طوری که لایه اول آن با عدد ده پر شود و لایه های داخلی با تفاضل عدد لایه ی قبل و عدد 1 پر شود

این پروژه توسط استاد امیر حسین کاشفی به دانشجو های درس مبانی کامپیوتر و برنامه سازی ترم یک سال 94 دانشکده ی فنی تهران جنوب داده شده بود

زبان نوشتاری : ++C

@de_coder
Project Kashefi.zip
551 B
سورس کد پروژه
developed by : KC

@de_coder
خروجی پروژه

@de_coder
پروژه ی ماتریس استاد کاشفی
اما به شکلی تعمیم یافته و پیشرفته تر

در این پروژه شما تعداد لایه های ماتریس را وارد می کنید و به ازای آن عدد ماتریس خود را دریافت می کنید

زبان نوشتاری : ++C


@de_coder
ProjectKashefi (MagicSquare).zip
550 B
سورس کد تعمیم یافته ی پروژه ی استاد کاشفی

developed by : MohammadR

@de_coder
نمونه ای از خروجی برنامه
در ازای وارد کردن عدد 20

@de_coder
c++ fast learning.pdf
249.6 KB
آموزش سریع ++C
@de_coder
python-learning.pdf
1.4 MB
آموزش پایتون به زبان ساده
@de_coder
html :

<!DOCTYPE html>
<html>
<head>
<title>Archiminde</title>
</head>
<body>
<div id="project-beginner" >
<div class="for-you">
<div class="above">Login
</div>
<form>
<input type="text" placeholder="Username" /><br />
<input type="password" placeholder="Password" />
<a href="https://media.giphy.com/media/5hHOBKJ8lw9OM/giphy.gif" class="sumbit-button">Sumbit</a>
<h4> <a href="">de.coder();</a></h4>
</form>
</div>
</div>
</body>
</html

@de_coder
کد html
@de_coder
css :

@import 'https://fonts.googleapis.com/css?family=Dosis';
body {
padding:0;
margin: 0;
background-color:#000;
}
#project-beginner {
width: 90%;
display:block ;
margin:20px 30px;
}
.for-you {
background-color: #000;
border-radius: 4px;
border: 4px solid aquamarine;
box-shadow: 0px 0px 20px aquamarine;
width: 90%;
}

.for-you .above {
width: 100%;
background-color: aquamarine;
color: #000;
text-align: center;
font-size: 1em;
font-family: 'Dosis', sans-serif;
font-weight: bolder;
}
input[type="text"] {
outline: 0 none;
background-color: #000;
color: aquamarine;
padding: 4px;
border: 2px solid aquamarine;
border-top: 4px solid aquamarine;
width: 50%;
-webkit-transition: width 0.5s;
-moz-transition: width 0.5s;
transition: width 0.5s;
display: block;
margin: 0 auto;
margin-top: 20px;
}

input[type="password"] {
outline: 0 none;
border: 2px solid aquamarine;
border-top: 4px solid aquamarine;
background-color: #000;
color: aquamarine;
padding: 4px;
display: block;
margin: 0 auto;
width: 50%;
-webkit-transition: width 0.5s;
-moz-transition: width 0.5s;
transition: width 0.5s;
}
input:focus {
width: 96%;
}

.sumbit-button {
display: block;
margin: 20px auto;
width: 50%;
padding: 2px 0;
outline: 0 none;
border: 2px solid aquamarine;
border-radius: 2px;
cursor: pointer;
-webkit-transition: background 0.5s;
-moz-transition: background 0.5s;
transition: background 0.5s;
background-color: #000;
color: aquamarine;
font-family: 'dosis';
font-weight: 500;
}
.sumbit-button:hover {
background-color: aquamarine;
color: #000;
font-weight: 700;
}

h4 {
color: #FFF;
margin-top: 40px;
font-family: 'Dosis', sans-serif;
text-align:center ;
font-weight: normal;
}
h4 a {
font-family: 'Dosis', sans-serif;
text-decoration: underline;
}

a {
color: aquamarine;
text-align: center;
text-decoration: none;
font-family: 'arial';
}
label {
color: #fff;
font-family: 'Arial', sans-serif;
}

@de_coder
کد css
بخش 1
@de_coder
کد css
بخش 2
@de_coder
خروجی برنامه
@de_coder
معرفی تابع getline با یک مثال
در زبان ++C
developed by kc

@de_coder
در حالت اول نام و نام خانوادگی توسط دو string گرفته میشود
در حالت دوم یک جمله ی کامل در یک استرینگ

@de_coder