Action Script | Flash | Flex | ColdFusion Answers

Questions: 296

Answers by our Experts: 143

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

write a program to get data from the user output display every of the data. use array and loop in your program
3. Write a program that reads in a continuous list of numbers, stopping when the user enters a negative. Once complete, the program should output the largest number received

#include<stdio.h>
main()
{
int n,min,int,max;






printf("enter as many numbers as you like ");
scanf("%d",&n);
printf("Enter the numbers:");
scanf("%d",&min);
max=min;
for(int=2;int<=n;int++)
scanf("%d",&min);
if(min>max)
max=min;
}
printf("The Largest Number is %d",max);
}

(num>0)
{
printf("It is a Positive number") ;
printf("It is a negative number") ;
}


return max num;
}
write a c# program to create a login form and student details
when I want to " Enter Q or q to quit the program" I can't get the results like others
Data Structures and Algorithm

Implement linkedlist for integers; following methods should be implemented.
void insertAtPosition(int x,int pos); //insert value x at given position
void insertAtEnd(int x); //insert value at the end of the list
void insertAtFront(int x); //insert value at the first position of the list
void removeFromFront(); //remove element from first position
void removeFromEnd(); //remove element from the end of the list
void removeFromPosition(int pos); //remove element from the position given by user. After the //operation there should be no gap in the elements of list
node* find(int x) const; //return the address
int findPosition(int pos) const; //find at given position and return the value
bool IsEmpty() const; //return true if list is empty
void print() const; //print the whole list
Note: Implement the main() to show that all above given methods are working properly
the bacground of CPU and the pathy thy've taken so thus far
write a program that reads a three-digit integer number,separates the digits(using/and%),and outputs on the screen how many digit zero, digit one, and digit two the number contains.
Computers are playing an increasing role in education. Write a program that will help an elementary school student learn multiplication. The program should output a question using the numbers, such as:
How much is 6 times 7?
The student then types the answer. The program checks the student’s answer. If it is correct, print "Very good!", and ask another multiplication question. If the answer is wrong, print "No. Please try again.", and let the student try the same question repeatedly until the student gets it right.
Define a Variable and a Constant with example.
Given the following array,wirte code to initialize all the array elements to 88
LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS