How to calculate the sum & product of dis-similar numbers of an array[10].
How to calculate the sum & product of dis-similar numbers of an array[10].
i do have a code but it stop working after a certain limit, so please help.....
3
Contributors
4
Replies
1 Day
Discussion Span
1 Year Ago
Last Updated
5
Views
Related Article:Sum of value in each row in 2D array
is a C# discussion thread by bunny07 that has 3 replies, was last updated 2 years ago and has been tagged with the keywords: array, multidimensional, sum.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
int i, j, k, sum, c;
sum = 0;
int[] m = new int[10];
for (k = 0; k < 10; k++)
{
Console.Write("Enter Value: ");
m[k] = Convert.ToInt16(Console.ReadLine());
}
for (i = 0; i < 10; i++)
{
c = 0;
for (j = i + 1; j < 10; j++)
{
if (m[i] == m[j] && c==0)
{
sum = sum + m[i];
sum = sum + m[j];
m[j] = 0;
c++;
}
else if (m[i] == m[j])
{
sum = sum + m[j];
m[j] = 0;
}
}
}
Console.WriteLine("sum of similar numbers : " + sum);
Console.ReadLine();
}
}
}
// sum of dissimilar numbers can simply be found by subtracting the sum of similar numbers from the total sum.....
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
int i, j, k, p;
p = 1;
int[] m = new int[4];
for (k = 0; k < 4; k++)
{
Console.Write("Enter Value: ");
m[k] = Convert.ToInt16(Console.ReadLine());
}
for (i = 0; i < 4; i++)
{
for (j = i + 1; j < 4; j++)
{
if (m[i] == m[j])
{
m[j] = 1;
if (j == 3)
{
m[i] = 1;
}
}
}
}
for (k = 0; k < 4; k++)
{
p = p * m[k];
}
if (p == 1)
{
Console.WriteLine("Product of dis-similar numbers : 0");
}
else
{
Console.WriteLine("sum of similar numbers : " + p);
}
Console.ReadLine();
}
}
}