Skip to main content

Declaring a single dimension Array in C sharp

Thinking of using a Single Dimension Array in C-sharp .
Following is the code to create or use Single Dimension Array in C-sharp.


using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace SingleDimensionArray
{
class Program
{
static void Main(string[] args)
{
string[] name = new string[2];
int[] sub1 = new int[2];
int[] sub2 = new int[2];
int[] total=new int[2];
for (int i=0;i<=1;i++)
{
Console.WriteLine("Enter the " + (i + 1) + " student name");
name[i]=Console.ReadLine();
Console.WriteLine("Enter the marks of first subject");
sub1[i] = int.Parse(Console.ReadLine());
Console.WriteLine("Enter the marks of second subject");
sub2[i] = int.Parse(Console.ReadLine());
total[i]=sub1[i]+sub2[i];
}
for (int i = 0; i <= 1; i++)
{
Console.WriteLine("The student name is " + name[i] + " and his total marks is " +total[i]);
}
Console.ReadLine();
}
}
}

Comments

Popular posts from this blog

Defination of the essential properties of operating systems

Define the essential properties of the following types of operating sys-tems:  Batch  Interactive  Time sharing  Real time  Network  Parallel  Distributed  Clustered  Handheld ANSWERS: a. Batch processing:-   Jobs with similar needs are batched together and run through the computer as a group by an operator or automatic job sequencer. Performance is increased by attempting to keep CPU and I/O devices busy at all times through buffering, off-line operation, spooling, and multi-programming. Batch is good for executing large jobs that need little interaction; it can be submitted and picked up later. b. Interactive System:-   This system is composed of many short transactions where the results of the next transaction may be unpredictable. Response time needs to be short (seconds) since the user submits and waits for the result. c. Time sharing:-   This systems uses CPU scheduling and multipro-gramming to provide econ...

AirBnB Infographic Journey to IPO

  Full Post at  https://techpomelo.com/2020/10/infographics-airbnb-milestone-journey-to-ipo/