Assembly [8086] Find The Smallest Character Among Three Characters Add Comment Edit .model small .stack 100h .data msg1 db 10,13,'Enter char=$' msg2 db 10,13,'Smallest Char=$' .code main pro... Read More
Database Lab 05 Add Comment Edit Download All Questions And S QL Files . Import SQL Files To Your Database Download Sql Database Schemas: Student ( Stu... Read More
Database Lab 04 Add Comment Edit Download All Questions And S QL Files . Import SQL To Your Database Download Sql Problem title : Design database schema and... Read More
Assembly language programming and organization of the ibm pc solution Add Comment Edit Assembly language programming and organization of the ibm pc solution Download : Download From Google Drive Github: Download Fr... Read More
DevSkill DCP 154 Square Sum Difference Add Comment Edit #include <bits/stdc++.h> using namespace std; int main() { long long int n,i,j,t,ss,sn,d; cin>>t; for(i... Read More
DevSkill DCP 184 Easy Sequence Add Comment Edit #include <bits/stdc++.h> using namespace std; int main() { long long int a[100],i,j,n,k,t; cin>>t; for(j=1... Read More
DevSkill DCP 193 My Merit Position Add Comment Edit #include <bits/stdc++.h> using namespace std; struct point { string x[200]; double y; }; int main() { st... Read More
DevSkill DCP-196 Break SImulator Add Comment Edit #include <bits/stdc++.h> using namespace std; int main() { double v,u,t,a,d; long long int tc,i,j; cin>>... Read More
UVA 10200 Prime Time Add Comment Edit Hints: Generate numbers from 0 to 10000 by Euler's rule and check every number is prime or not. If prime then mark as prime... Read More
LightOJ 1197 Help Hanzo Add Comment Edit Hints : Implement, Segmented Sieve Algorithm To Generate Prime Numbers. Here is a tutorial for segmented sieve. Bangla Tutorial ... Read More
সেগমেন্টেড সিভ (Segmented Sieve) Add Comment Edit সেগমেন্টেড সিভ (Segmented Sieve) হল নির্দিষ্ট রেঞ্জ এর মধ্যে প্রাইম নম্বর ... Read More
UVA 11455 - Behold my quadrangle Add Comment Edit #include <bits/stdc++.h> using namespace std; int main() { long long int t,a,b,c,d,i,j,s1,s2,s3,s4; //freo... Read More
SPOJ PRIME1 - Prime Generator 1 Comment Edit SPOJ PRIME1 - Prime Generator #include <bits/stdc++.h> using namespace std; #define n 10000000 vector<long long int... Read More