Questions: 1 362

Answers by our Experts: 1 362

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Search & Filtering

Hey guys please help me out on this program in C# I really don't have idea on this..plss:(?
program that would input the value of variable REPLY and then output its corresponding meaning.

REPLY -- MEANING
Y -- Yes,let's do it!
N -- No,I won't do it!
M -- Maybe I will!
S -- Sure dude!
Q -- Exit Program!


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

namespace Example
{
class Program
{
static void Main(string[] args)
{
}
}
}
To avail a college scholarship,an applicant must provide three figures:his NCEE score,monthly salary of his parents,and entrance examination score.The college may either decided to accept,rejected,or further study his application base on the ff:
Rejected if any of the ff. exists:
1.parent's salary is above 10,000
2.NCEE score is below 95
3.entrance exam score is below 90

Accepted if all of the ff. are met:
1.parent's salary is at most 3,500
2.average of NCEE and entrance exam is at least 96

Any application w/c is neither accepted nor rejected will be subjected for further study.Make a program that would input the NCEE score,parent's salary and entrance exam score and then output twhether the applicant is accepted,rejected or for further study.
It is known that November 1993 starts on a Monday. Make a program that would input a numeric day(between 1 and 30) and output the day of the week the day falls. For example, if 3 is entered for day, the program must display "WEDNESDAY", if 8 was entered,"MONDAY" must be displayed and so on...
please help me out on this program in OOP(c# console program)?
An applicant will be accepted to the Jedi knight Military Academy if he is at least 200 cm. Tall; age is between 21 and 25, inclusive;and a citizen of the Planet Endor. However, if the applicant is a recommendee of Jedi Master Obi wan,he is accepted automatically regardless of his height, age,citizenship.write a program that would input the applicant's height,age,citizenship code("C" for citizen of Endor,"N" for non citizen), and recommendee code("R") for recommendee,"N" for non-recommendee).And then output whether the applicant is accepted or rejected.
I need to develop a program in C# of users inputting 10 numbers for an array and then having the lowest and highest picked out of the ten.

ANy help here is greatly appreciated.
How to Create a program in C that accepts a set of integers and finds the number of positive and negative numbers.And the program stops when the user enters 0 for the integer value.
write a c# program which will accept a text from user and remove the extra spaces within there
Dear all...
I have one query..
I have one C# application which calls SUM() function from the DLL.I want to hook that SUM() function in DLL & manipulate the instructions,by injecting my DLL into that C# application process.

Please reply
write a program to calculate a sum of all the nos getting an input through command line argument
I have a program with multiple forms. From Form1 I want to open Form2 and simultanously display a graphic (some lines), but I get only a blank form. I can only get the graphic displayed if I click on a button, but I need it to appear without intervention. How can I do it?

Here is the code for the second form:


using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Drawing.Drawing2D;

namespace WindowsApplication1
{
public partial class Form2 : Form
{
public Form2()
{
InitializeComponent();
CenterToScreen();

}

private void Form2_Load(object sender, EventArgs e)
{
Graphics g = this.CreateGraphics();
Pen p = new Pen(Color.SaddleBrown, 15);

g.DrawLine(p, 40, 400, 200, 400);
g.DrawLine(p, 80, 400, 80, 90);
g.DrawLine(p, 73, 90, 300, 90);
LATEST TUTORIALS
APPROVED BY CLIENTS