Find the programs and assignment in the following link: https://drive.google.com/file/d/0Bxt9SSF8X6wuRVBfQi01aUN5Tlk/edit?usp=sharing https://drive.google.com/file/d/0Bxt9SSF8X6wuczdlcFdIREVpQms/edit?usp=sharing
Popular posts from this blog
//nqueens #include<iostream> #include <conio.h> #include<math.h> #include<stdlib.h> #define max 20 using namespace std; class nqueens { private: int n; public: nqueens(int num); void display(int [],int); int place(int [],int); }; nqueens::nqueens(int num) { int x[max]; int k; n=num; cout<<"the soln to"<<n<<"queens problem is\n"; x[0]=-1; k=0; while(k>=0) { x[k]=x[k]+1; while(x[k]<n&&!place(x,k)) x[k]=x[k]+1; if(x[k]<n) if(k==n-1) display(x,n); else { ...
VII-Sem-ISE Class-WEB LAB
Before coming to next lab all the batch students answer the following: 1. write the description of all the basic tags that are done in the lab1. tags: <html>,<head>,<title>,<body>,<p>,<b>,<i>,<code>,<em>,<sub>,<sup>,<blockquote>, <small>,<strong>, <br />,<hr />,<img>,<a>,<marquee>,<h1> to <h6> tags. 2. mention 3 different types of lists in xhtml and explain the tags that are required to create 3 different lists in xhtml.
Comments
Post a Comment