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

Create a program that first asks for two integer values A and B. Your program should then pick a random number between A and B and keep it secret. Then ask the user to guess what the number is. The program should continue to ask the user to guess, until the user gets the correct answer. Each time the user makes an incorrect guess, the program should tell the user if the guess was too high, or too low. The program should also tell the user if the guess was outside the range between A and B. Important Notes 1. The numbers A and B must be different. The program should keep asking for new inputs until it gets two different numbers. 2. A and/or B could be negative. The program should work with negative values. 3. The numbers A and B could be given in either order (A < B or A > B). The program should not care and be able to accept them in either order. 4. The program should pick a number at random between A and B inclusive (the random number might be either A or B). 5. The program should tell the user if a guess is
Create a program that will prompt an end user to input 5 float-type values, then calculate the mean, the variance and the standard deviation. I am so lost, need any help avaiable.
Create a file that contains your favorite movie quote. Use a text editor such as Notepad and save the file as Quote.txt. copy the file contents and paste them into a word-processing program such as word. Save the file as Quote.doc. write an application that displays the sizes of the two files as well as the ratio of their sizes to each other. Use FileInfo object.
hi i have a question on my homework

i have homework for my programming course and im using the book C# visual studio 2010 text book

and my prof has assigned a question for us to do , and Im having trouble coding the work.

so heres the question. pg 335 question 7.

Running on a particular treadmill, you burn 3.9 calories per minute. create an application that uses the loop to display the number of calories burned after 10,15,20,25,30 minutes. display the output in a LISTBOX control.

please help me out here thanks.
analyze the process of making a call by using a pay phone. identify the objects involved and the behaviour of these objects. also, identify the messages passed between the objects for interacting with eact other.
Define a class vector to hold 3 integer values. Include operator methods such that we shall be able to perform these operations on the vector object V1, V2 & V3.
1)V3=V1+V2;
2)V3=5*V1;
3)V3=V2*5;
4)int m= V1*V2
Define a class called MyString with these features:
1) An overloaded binary + operator that concatenates two MyString objects & create a third object.
2) An overloaded comparison == operator to comapre two strings.
3) An overloaded unary - (minus) operator that returns true if the string object is empty otherwise false.
write a prg that accepts 2 strings from the user. Also write code to print positions of all occurrences of the second string in the fisrt string using regular experssion.
write a prg to create a jagged arrays as follows:
3 4 2 9 0
2 5
1 6 8

also write code to print the above jagged arrays in reverse order as follows:
0 9 2 4 3
5 2
8 6 1
define a class called dc with two data members: cname and duration. Include relevant constructors & operator methods to perform these operations:
dc c1= new dc("BSC",2);
dc c2= new dc("BMS",2);
if (c1>c2)
System.Console.WriteLine("c1>c2");
else if(c1==c2)
System.Console.WriteLine("c1=c2");
else
System.Console.WriteLine("c2>c1");
LATEST TUTORIALS
APPROVED BY CLIENTS