Do not know how to write this code - Write a C program that displays a title, "Currency Conversion", and then writes the names of five currencies and their equivalents to a US dollar. The conversions are hard coded equations. Insert comments in the program to document the program internally.
Java Programming - I/O: Reading & Writing - Most stream I/O uses sequential access methods, but it is possible to use stream I/O for random access. The RandomAccessFile class in java.io implements random access files.
Write a simple program to demonstrate using stream I/O for random access.
C++ Programming Control Structures I - Write a program that prompts the user to input the x-y coordinate of a point in a Cartesian plane. The program should then output a message indicating whether the point is the orgin, is located on the x (or y) axis, or appears in a particular quadrant. For Example:
(0, 0) is the orgin
(4, 0) is on the x-axis
(0, -3) is on the y-axis
(-2, 3) is in the s...
Java Programming - Exception Handlers - Write three separate simple exception handlers, one for dividing by zero, another for attempting to open a nonexistent file, and the last for an array out-of-bounds check.
Java Programming - I/O: Reading & Writing - Write a simple program that takes an input stream and reverses each line it reads. For instance, the input line "abc" should be written "cba".