Create a C++ program that will
Maintaining balance is Php 5,000.00
Interest rate is 5%
Bank charge is 2%
PIN (Personal Identification Number) is required to do a bank transaction
The program gives the user an option to change PIN
do while loop
2. Write a java program that reads in a list of int values one per line
and outputs their sum as well as the numbers read with each number.
Your programs will ask the user how many integers there will be, and
fill the table with the integers input.
Sample output:
How many numbers will you enter?
2
Enter 2 integers one per line:
20
30
The sum is 50
do while loop
Sample output:
1. Write a program that asks the user for a starting value and an ending
value and then writes all the integers (inclusive) between those two values.
Enter Start:
10
Enter End:
15
10
11
12
13
14
15
Sum of in range values: 75
while loop
sample output
a. 20 5 16 4 12 3 8 2 4 1
for loop
sample output
c. Number Square Cube
1 1 1
2 4 8
3 9 27
4 16 64
5 25 125
. . .
. . .
. . .
10 100 1000
Please visit link below, its question 8, i want the answer without using import.java and @Override
http://ntci.on.ca/compsci/java/ch6/6_10.html
Please use Java
Ill highly appreciate your free help, my friend recommended this to me. **You already did this code but can you please do it again without using @Override.**
Once again, i really appreciate it
Implement list data structure that will resize on its own
Note:
No global declarations
Make use of class and structure
Call in main the functions
Write a C Program which converts Binary Number to Decimal and vice-versa. Your program must contain two functions. You have to ask the choice for the user if he/she enter 1 you have to work with BinToDec function if the choice is 2 you have to work with DecToBin function. Both functions take the number in int main part and you have to print the answer in int main part.
Write an assembly language program that input characters string and prints them in reverse order. Use a stack. HINT: Take user input with interrupt method in loop until user press Enter
Write an emu 8086 assembly language program to push the following values on stack 450, 0, 487, 101, 500, 0, 359, 0, 458. Now write a code to delete the items having quantity zero and update the stack.