Question: Q1: Write the program that print all the non-vowel letters between a and z. Use a for loop and an if statement and continue. Hint:
Q1: Write the program that print all the non-vowel letters between a and z. Use a for loop and an if statement and continue. Hint: The vowel letters are : a,e,i,u,o.
Q2: Write a program that finds the temperature, as an integer, that is the same in both Celsius and Fahrenheit. The formula to convert from Celsius to Fahrenheit is: Fahrenheit = 9/5 Celsius + 32 Your program should create two integer variables for the temperature in Celsius and Fahrenheit. Initialize the temperature to 100 degrees Celsius. In a loop, decrement the Celsius value and compute the corresponding temperature in Fahrenheit until the two values are the same.
Q3: Array Search Write an application that creates an array, fill it with random values (-50 to 50) , asks the user to enter a number and check if it exists in the array or not. Use a method IndexFound to search the content of its input array parameter for a target value and returns the index if the value exists in the array and -1 otherwise.
written in c# programming, the simplest way
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
