Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!-- 2. Create a PHP script that displays “Hello World” on the web page.-->
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>program-1</title>
- </head>
- <body>
- <?php
- echo "hello world!!!"
- ?>
- </body>
- </html>
- <!-- 3. Create PHP script which prints Name , Roll Number & sem 2 SPI on the web page. -->
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>program-2</title>
- </head>
- <body>
- <?php
- echo "<h1>Name : Poojan sakhreliya</h1>";
- echo "<h2>Roll no. : MCA035</h2>";
- echo "<h3>SEM-II SPI : 9.00</h3>";
- ?>
- </body>
- </html>
- <!-- 4. Create a HTML page to display your resume related information. Create a decent/
- professional design using CSS and/or javascript. -->
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>program-3</title>
- </head>
- <body>
- <div>
- <div>
- <div>
- <h1 style="text-align: center;">Poojan sakhreliya</h1>
- </div>
- <div style="text-align: center;">
- <h4>[email protected] | +918153858050</h4>
- <hr style="padding: 0px; margin: 0px;">
- </div>
- </div>
- <div>
- <h2 style="text-align: center; padding: 0px; margin: 0px;">EDUCATIONS</h2><hr style="padding: 0px; margin: 0px;"/>
- <div style="margin:0px 50px;">
- <p style="display: flex; justify-content: space-between;"><b>Dharmsinh Desai University - Naidad</b> 8.88 cpi</p>
- <p style="display: flex; justify-content: space-between;"><i>Master of Computer Application</i> 2023 - Present</p>
- <p style="display: flex; justify-content: space-between;"><b>Sutex Bank College of Computer Application & Science - Surat</b> 9.39 CGPA</p>
- <p style="display: flex; justify-content: space-between;"><i>Bachelor of Computer Application</i> 2020 - 2023</p>
- </div>
- <hr style="padding: 0px; margin: 0px;"/>
- </div>
- <div>
- <h2 style="text-align: center; padding: 0px; margin: 0px;">TECHNICAL SKILLS</h2><hr style="padding: 0px; margin: 0px;"/>
- <div style="margin-left: 50px;">
- <p><b>Programming language</b> : c,c++,java,javascript</p>
- <p><b>Library/Framwork</b> : ReactJs,ExpressJs,TailwindCSS</p>
- <p><b>platforms</b> : Git ,Github,Vs code,Postman,Docker</p>
- <p><b>Others</b> : Nodejs,MongoDB,MySQL,OOPS,Data Structure</p>
- </div>
- <hr style="padding: 0px; margin: 0px;"/>
- </div>
- <div>
- <h2 style="text-align: center; padding: 0px; margin: 0px;">PROJECTS</h2><hr style="padding: 0px; margin: 0px;"/>
- <div style="margin-left: 50px; margin-top: 10px;">
- <p style="margin: 0px;"><b>1. FoodPoint Online Food Delivery</b></p>
- <i style="margin: 0px;">January 2023 - April 2023</i>
- <p style="margin:0px;"><b>Role : </b> Frontend Developer</p>
- <li style="margin-top: 5px;">Design and implemented four model : Customer , resturent owner , delivery , admin</li>
- <li>integrated secure pyment system</li>
- <li>real-time track order </li>
- </div>
- <div style="margin-left: 50px; margin-top: 30px;">
- <p style="margin: 0px;"><b>2. Buy-Bazzar Ecommerce App </b></p>
- <i style="margin: 0px;">March 2024 - present</i>
- <p style="margin:0px;"><b>Role : </b> Full stack Developer</p>
- <li style="margin-top: 5px;">Design and implemented four model : Customer , seller , admin</li>
- <li>send mail using RabbitMQ with seamless</li>
- <li>real-time send order data using socketio </li>
- <li>for authorization and authetication use JWT and PassportJS </li>
- </div>
- </div>
- </div>
- </body>
- </html>
- <!-- 5. Design a user registration form in HTML for a technical and cultural fair of a university.
- Required information is Name, branch, semester, roll number, email id, contact number,
- subject of interest (out of - Cultural, Web Publishing, Technical, Finance, Publication,
- Reception and hosting) and signature. Also mention past experience of participation in
- such activity if any. -->
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>program-4</title>
- </head>
- <body>
- <div style="width: 100vw; height: 100vh; background-color: bisque; display: flex; align-items: center; justify-content: center;">
- <form action="p1.html" style="background-color: lightblue; width: 500px; height: 500px; border: 2px solid black; padding: 20px; box-shadow: 2px 2px 20px 2px black; display: flex; flex-direction: column; justify-content: space-around;">
- <h1 style="text-align: center;">Registration Form</h1>
- <div>
- <label for="name">Name : </label>
- <input type="text" placeholder="Enter the name.." name="name" style="padding: 5px;">
- </div>
- <div>
- <label for="branch">Branch : </label>
- <select name="branch" id="branch" style="padding: 5px;">
- <option value="mca">MCA</option>
- <option value="mba">MBA</option>
- <option value="mbbs">MBBS</option>
- <option value="ce">CE</option>
- <option value="be">BE</option>
- </select>
- </div>
- <div>
- <label for="semester">Semester : </label>
- <select name="semester" id="brasemesternch" style="padding: 5px;">
- <option value="1">1</option>
- <option value="2">2</option>
- <option value="3">3</option>
- <option value="4">4</option>
- <option value="5">5</option>
- <option value="6">6</option>
- </select>
- </div>
- <div>
- <label for="rollno">Roll Number : </label>
- <input type="text" id="rollno" name="rollno" placeholder="Enter the roll number.." style="padding: 5px;">
- </div>
- <div>
- <label for="email">Email : </label>
- <input type="email" id="email" name="email" placeholder="Enter the email.." style="padding: 5px;">
- </div>
- <div>
- <label for="mobileno">Mobile Number : </label>
- <input type="text" id="mobileno" name="mobileno" placeholder="Enter the mobile number.." maxlength="10" style="padding: 5px;">
- </div>
- <div>
- <label for="subjectofi">subject of interest : </label>
- <select name="subjectofi" id="subjectofi" style="padding: 5px;">
- <option value="cultural">Cultural</option>
- <option value="webPublishing">Web Publishing</option>
- <option value="technica">Technica</option>
- <option value="finance">Finance</option>
- <option value="publication">Publication</option>
- <option value="reception">Reception</option>
- <option value="hosting">Hosting</option>
- </select>
- </div>
- <div>
- <label for="past">Past Experience : </label>
- <textarea id="past" placeholder="Enter the past experience.." style="padding: 5px;" name="pastEx"></textarea>
- </div>
- <div style="display: flex; justify-content: center;">
- <button style="width: 100px; height: 40px;">Submit</button>
- </div>
- </form>
- </div>
- </body>
- </html>
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- <script>
- function submit()
- {
- // e.preventDefault();
- // console.log(e);
- console.log("hello");
- }
- </script>
- </head>
- <body>
- <div style="width: 100vw; height: 100vh; background-color: bisque; display: flex; align-items: center; justify-content: center;">
- <form style="background-color: lightblue; width: 500px; height: 500px; border: 2px solid black; padding: 20px; box-shadow: 2px 2px 20px 2px black; display: flex; flex-direction: column; justify-content: space-around;">
- <h1 style="text-align: center;">Registration Form</h1>
- <div>
- <label for="firstname">First Name : </label>
- <input type="text" placeholder="Enter the first name.." name="firstname" style="padding: 5px;">
- </div>
- <div>
- <label for="middlename">Middle Name : </label>
- <input type="text" placeholder="Enter the middle name.." name="middlename" style="padding: 5px;">
- </div>
- <div>
- <label for="lastname">Last Name : </label>
- <input type="text" placeholder="Enter the last name.." name="lastname" style="padding: 5px;">
- </div>
- <div>
- <label for="address">Address : </label>
- <textarea id="address" placeholder="Enter the address .." style="padding: 5px;" name="address"></textarea>
- </div>
- <div>
- <label for="email">Email : </label>
- <input type="email" id="email" name="email" placeholder="Enter the email.." style="padding: 5px;">
- </div>
- <div>
- <label for="mobileno">Mobile Number : </label>
- <input type="text" id="mobileno" name="mobileno" placeholder="Enter the mobile number.." maxlength="10" style="padding: 5px;">
- </div>
- <div>
- <label for="discription">Discription : </label>
- <textarea id="discription" placeholder="Enter the discription .." style="padding: 5px;" name="discription"></textarea>
- </div>
- <div style="display: flex; justify-content: center;">
- <button type="button" style="width: 100px; height: 40px;" onclick="submit()">Submit</button>
- </div>
- </form>
- </div>
- </body>
- </html>
- <!-- 1. Write appropriate HTML-JavaScript-jQuery code for the following requirements:
- a. Assign appropriate font size, font family and background color to the <p> tag
- using the style property.
- b. Use the above <p> tag in three places in a html document and set this common
- style property to above tag.
- c. Use the above code to style the tags in multiple pages by using common file. -->
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- <script src="../jquery-3.7.1.min.js"></script>
- </head>
- <body>
- <p style="font-size: large; font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif; background-color: red;">static p</p>
- <p>dynamic-1</p>
- <p>dynamic-2</p>
- <p>dynamic-3</p>
- <script>
- $('p').css({"font-size": "large","font-family": "'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif","background-color": "orange"})
- </script>
- </body>
- </html>
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- <script src="../jquery-3.7.1.min.js"></script>
- </head>
- <body>
- <p>otherp-1</p>
- <p>otherp-2</p>
- <p>otherp-3</p>
- <script src="./pStyle.js"></script>
- </body>
- </html>
- $('p').css({"font-size": "large","font-family": "'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif","background-color": "orange"})
- <!-- 2. Write appropriate HTML-JavaScript-jQuery code for the following requirements:
- a. Create a button, on click of it, welcome message should be displayed on web
- page just besides the button.
- b. Create three input textboxes. On click of each input box, change its background
- color to yellow.
- c. Create two style properties and by default apply first one to a paragraph. On a
- button click, change the paragraph style to other style.
- d. On paragraph-click, toggle its style.
- e. Create one button and a textbox. On button-click, set its value to the text written
- in the text box. -->
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- <script src="../jquery-3.7.1.min.js"></script>
- </head>
- <body>
- <div style="display: flex;" id="message">
- <button onclick="showMessage()">Click to Welcome message</button>
- </div>
- <div>
- <input type="text" id="input1">
- <input type="text" id="input2">
- <input type="text" id="input3">
- <input type="text" id="input4">
- </div>
- <div>
- <p id="p1">hello World!!!</p>
- <button onclick="changeStyle()">Change Style</button>
- </div>
- <div>
- <p id="toggleStyle" style="background-color: bisque; color: brown;">on click Toggle Style</p>
- </div>
- <div>
- <input type="text" name="txt" id="txt" >
- <button onclick="changeValue(this)">My name is Poojan!!</button>
- </div>
- <script>
- function showMessage()
- {
- $("#message").append("<p style='color:red;'>Welcome back poojan !!!</p>")
- }
- $("input").click((e)=>{
- // console.log(e);
- $(`#${e.target.id}`).css({"background-color":"yellow"})
- })
- function changeStyle()
- {
- console.log("hello");
- $("#p1").css({"background-color":"yellow","color":"red"})
- }
- let toggle=true;
- $("#toggleStyle").click((e)=>{
- if(toggle)
- $(`#${e.target.id}`).css({"background-color":"yellow","color":"blue"})
- else
- $(`#${e.target.id}`).css({"background-color":"bisque","color":"brown"})
- toggle=!toggle;
- })
- function changeValue(e)
- {
- e.textContent=$("#txt").val()
- }
- </script>
- </body>
- </html>
- <!-- 3. Write appropriate HTML-JavaScript-jQuery code for the following requirements:
- a. When the document is ready, create a div tag (id: div1) to display display
- Welcome message.
- b. Create two div tags (id: div2 and div3). When mouse moves over the div1,
- assign green as background color to both div2 and div3. When mouse moves
- out the div1, resent background color to white.
- c. Display and hide a paragraph on click of two buttons btnShow and btnHide.
- d. Perform the above task 3-c using a single button. toggle(). -->
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Program-3</title>
- <script src="../jquery-3.7.1.min.js"></script>
- </head>
- <body>
- <div id="div2">Div-2</div>
- <div id="div3">Div-3</div>
- <div>
- <button onclick="showPara()">Show!!</button>
- <button onclick="hidePara()">Hide!!</button>
- <button onclick="togglePara()">Toggle!!</button>
- <p id="hideShow">paragraph show !!!</p><br>
- </div>
- <script>
- $(document).ready(() => {
- $(document.body).prepend("<div id='div1' style='width:650px;height:50px;border:2px solid black;'>Welcome message</div>")
- $("#div1").mouseover(() => {
- $("#div2").css({ "background-color": "green" })
- $("#div3").css({ "background-color": "green" })
- })
- $("#div1").mouseout(() => {
- $("#div2").css({ "background-color": "white" })
- $("#div3").css({ "background-color": "white" })
- })
- })
- let toggle = true;
- function showPara() {
- $("#hideShow").css({ "display": "block" })
- toggle=true;
- }
- function hidePara() {
- $("#hideShow").css({ "display": "none" })
- toggle=false;
- }
- function togglePara() {
- if (toggle)
- $("#hideShow").css({ "display": "none" })
- else
- $("#hideShow").css({ "display": "block" })
- toggle = !toggle;
- }
- </script>
- </body>
- </html>
- <!-- 4. Write appropriate HTML-JavaScript-jQuery code for the following requirements:
- a. Create one textarea (id: ta1) and one button (id: showTextCount).
- On click of the button, display count of text available in ta1 on document.
- b. Create one textarea (id: ta2).
- Update text count as and when text is entered. Display the same on document.
- c. Restrict the max. number of characters to 10 in ta2. -->
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>program-4</title>
- <script src="../jquery-3.7.1.min.js"></script>
- </head>
- <body>
- <textarea name="txt" id="ta1" cols="30" rows="10"></textarea>
- <button onclick="countChr()">count characters!!</button>
- <p id="result" style="color: red;"></p>
- <textarea name="txt" id="ta2" cols="30" rows="10" maxlength="10"></textarea>
- <p id="result2"></p>
- <h1 id="showText"></h1>
- <script>
- function countChr()
- {
- let txt=$("#ta1").val();
- $("#result").text(`total character is : ${txt.length}`)
- }
- $("#ta2").keyup(()=>{
- console.log("hello");
- let txt=$("#ta2").val();
- $("#result2").text(`total character is : ${txt.length}`)
- $("#showText").text(`${txt}`)
- })
- </script>
- </body>
- </html>
- <!-- 5. Write appropriate HTML-JavaScript-jQuery code for the following requirements:
- a. Create one style class with name ‘error’:-
- i. border color : red
- ii. background color : yellow.
- iii. Apply this class to a text box when the focus is moved out of it and if
- entered data is a negative number.
- b. Create two textboxes and one button with + on it. On click of the + button,
- display sum of the numbers entered in two textboxes. Also perform same
- functionality for subtract, multiply and divide buttons.
- c. The buttons in above code 5-b should remain in disable state until any one or
- both of the textboxes are vacant. -->
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>program-5</title>
- <style>
- .error {
- border: 2px solid red;
- background-color: yellow;
- }
- </style>
- <script src="../jquery-3.7.1.min.js"></script>
- </head>
- <body>
- <div>
- <input type="number" id="number" placeholder="enter the number..">
- </div>
- <script>
- $("#number").keyup(()=>{
- let val = Number($("#number").val());
- if (val < 0)
- $("#number").addClass("error");
- else
- $("#number").removeClass("error");
- })
- $("#number").(()=>{
- $("#number").addClass("error");
- })
- $("#number").focus(()=>{
- $("#number").removeClass("error");
- })
- </script>
- </body>
- </html>
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace lab_2
- {
- class Program
- {
- static void Main(string[] args)
- {
- int a ;
- int b ;
- a=Convert.ToInt32(Console.ReadLine());
- b = Convert.ToInt32(Console.ReadLine());
- Console.WriteLine("sum of numbers :" + (a + b));
- Console.WriteLine("substraction of numbers :" + (a - b));
- Console.WriteLine("multiplication of numbers :" + (a * b));
- Console.WriteLine("Divison of numbers :" + (a / b));
- Console.ReadKey();
- }
- }
- }
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace lab_2
- {
- class Program
- {
- static void Main(string[] args)
- {
- int a;
- Console.WriteLine("Enter the number : ");
- a=Convert.ToInt32(Console.ReadLine());
- bool flag = true;
- for(int i=2;i<a/2;i++)
- {
- if (a % i == 0)
- flag = false;
- }
- if (flag)
- Console.WriteLine("this is prime number!!");
- else
- {
- Console.WriteLine("factor of number is : ");
- for (int i = 1; i <= a; i++)
- {
- if (a % i == 0)
- Console.Write(i+" ");
- }
- }
- Console.ReadKey();
- }
- }
- }
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace lab_2
- {
- class Program
- {
- static void Main(string[] args)
- {
- if(args.Length>0)
- {
- Console.WriteLine(args[0]);
- Console.WriteLine(args[1]);
- }
- Console.ReadKey();
- }
- }
- }
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace lab_2
- {
- class Program
- {
- static void Main(string[] args)
- {
- int sum = 0;
- for(int i=1;i<=10;i++)
- {
- Console.WriteLine(i);
- sum += i;
- }
- Console.Write("Sum is :" + sum);
- Console.ReadKey();
- }
- }
- }
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace lab_2
- {
- class Program
- {
- static void Main(string[] args)
- {
- //int sumDigit = 0,num;
- //Console.WriteLine("Enter number :" );
- //num = Convert.ToInt32(Console.ReadLine());
- //int reverseNum = 0;
- //while(num!=0)
- //{
- // reverseNum = (reverseNum * 10) + (num % 10);
- // sumDigit += (num % 10);
- // num /= 10;
- //}
- //Console.WriteLine("Reverse Number is :"+reverseNum);
- //Console.WriteLine("sum is Number is : " + sumDigit);
- //int fab;
- //Console.WriteLine("Enter number for fibonacci :");
- //fab = Convert.ToInt32(Console.ReadLine());
- //int a = 1, b = 0, c = 0;
- //if (fab <= 1)
- //{
- // Console.WriteLine(b + " " + a);
- //}
- //else
- //{
- // Console.Write(b + " " + a+" ");
- // for (int i = 2; i <= fab; i++)
- // {
- // c = a + b;
- // Console.Write(c + " ");
- // b = a;
- // a = c;
- // }
- //}
- int[,] arr1 = new int[3, 3];
- int[,] arr2 = new int[3, 3];
- int[,] addition = new int[3, 3];
- int[,] multiplication = new int[3, 3];
- Console.WriteLine("Enter the elements of array-1");
- for (int i = 0; i < 3; i++)
- {
- for (int j = 0; j < 3; j++)
- {
- arr1[i,j] = Convert.ToInt32(Console.ReadLine());
- }
- }
- Console.WriteLine("Enter the elements of array-2");
- for (int i = 0; i < 3; i++)
- {
- for (int j = 0; j < 3; j++)
- {
- arr2[i, j] = Convert.ToInt32(Console.ReadLine());
- }
- }
- for (int i=0;i<3;i++)
- {
- for(int j=0;j<3;j++)
- {
- addition[i,j] = arr1[i,j] + arr2[i,j];
- }
- }
- for (int i = 0; i < 3; i++)
- {
- for (int j = 0; j < 3; j++)
- {
- for(int k=0;k<3;k++)
- {
- multiplication[i,j] += (arr1[i, k] * arr2[k, j]);
- }
- }
- }
- Console.WriteLine("Additon of array-1 and array-2");
- for (int i = 0; i < 3; i++)
- {
- for (int j = 0; j < 3; j++)
- {
- Console.Write(addition[i, j] + " ");
- }
- Console.WriteLine();
- }
- Console.WriteLine("Multiplation of array-1 and array-2");
- for (int i = 0; i < 3; i++)
- {
- for (int j = 0; j < 3; j++)
- {
- Console.Write(multiplication[i, j] + " ");
- }
- Console.WriteLine();
- }
- Console.ReadKey();
- }
- }
- }
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace lab_2
- {
- class Program
- {
- void getMinMax(int[] arr)
- {
- int min = arr[0];
- int max = arr[1];
- for(int i=0;i<arr.Length;i++)
- {
- if (min < arr[i])
- min = arr[i];
- if (max > arr[i])
- max = arr[i];
- }
- Console.WriteLine("Min value of array : "+min);
- Console.WriteLine("Max value of array : " + max);
- }
- static void Main(string[] args)
- {
- int a, b;
- Console.WriteLine("Enter the elements..");
- int n=Convert.ToInt32(Console.ReadLine());
- int[] arr = new int[n];
- for(int i=0;i<n;i++)
- {
- arr[i]=Convert.ToInt32(Console.ReadLine());
- }
- var p1 = new Program();
- p1.getMinMax(arr);
- Console.ReadKey();
- }
- }
- }
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace lab_2
- {
- class Program
- {
- static void Main(string[] args)
- {
- int[][] arr1 = new int[5][];
- arr1[0] = new int[] { 31, 22, 13, 4 };
- arr1[1] = new int[] { 111, 94, 67 };
- arr1[2] = new int[] { 89, 23 };
- arr1[3] = new int[] { 0, 425, 78, 513, 99 };
- arr1[4] = new int[] { 2,23 };
- for (int i = 0; i < arr1.Length; i++)
- {
- Array.Sort(arr1[i]);
- for (int j = 0; j < arr1[i].Length; j++)
- {
- Console.Write(arr1[i][j] + " ");
- }
- Console.WriteLine();
- }
- Console.WriteLine("Reverse array..");
- for (int i = 0; i < arr1.Length; i++)
- {
- Array.Reverse(arr1[i]);
- for (int j = 0; j < arr1[i].Length; j++)
- {
- Console.Write(arr1[i][j] + " ");
- }
- Console.WriteLine();
- }
- Console.ReadKey();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment