Question

In: Computer Science

Need the correct line of code for c program to solve  this equation . i is a...

Need the correct line of code for c program to solve  this equation . i is a value that the program all ready calculates from user imput. t

i = (x*1000)+(y*500)+(z*250

Solutions

Expert Solution

I have written the program using C PROGRAMMING LANGUAGE.

OUTPUT :

CODE :

//included the stdio library

#include <stdio.h>

//main method

int main(void) {

//declared the variables of double type

double i,x,y,z;

//Taking the user inputs for x,y and z values

printf("Enter value for x : ");

scanf("%lf",&x);

printf("Enter value for y : ");

scanf("%lf",&y);

printf("Enter value for z : ");

scanf("%lf",&z);

//i = (x*1000)+(y*500)+(z*250)

i = (x*1000)+(y*500)+(z*250);

//To print the output on the console

printf("\nOUTPUT : \nThe value of i is %lf",i);

return 0;

}

Thanks..


Related Solutions

This problem needs to be solved with source code. I need a C++ program that will...
This problem needs to be solved with source code. I need a C++ program that will help me solve this question. I need it in C++, please. Writing with comments so it maybe cleared. 1.2. We received the following ciphertext which was encoded with a shift cipher: xultpaajcxitltlxaarpjhtiwtgxktghidhipxciwtvgtpilpit ghlxiwiwtxgqadds. 1. Perform an attack against the cipher based on a letter frequency count: How many letters do you have to identify through a frequency count to recover the key? What is...
I need to complete this C++ program. The instructions are in the comments inside the code...
I need to complete this C++ program. The instructions are in the comments inside the code below: ------------------------------------------------------------------------- Original string is: this is a secret! Encypted string is: uijt!jt!b!tfdsfu" Decrypted string is: this is a secret! //Encoding program //Pre-_____? //other necessary stuff here int main() { //create a string to encrypt using a char array cout<< "Original string is: "<<string<<endl; encrypt(string); cout<< "Encrypted string is: "<<string<<endl; decrypt(string); cout<<"Decrypted string is: "<<string<<endl; return 0; } void encrypt(char e[]) { //Write implementation...
I need to write a program in C with the following specification * ​​​​​​​Line one of...
I need to write a program in C with the following specification * ​​​​​​​Line one of the standard input will have the total number of people which must not be greater than 10 * Each of the subsequent lines of input will be the first name of a person and their number (ex. "Adam 85") one space between name and number * Each name must be a maximum of 14 characters * Put the first names into an array called...
I need the code for a C++ program that creates an array of 5000 String objects...
I need the code for a C++ program that creates an array of 5000 String objects that will store each word from a text file. The program will read in each word from a file, and store the first 5000 words in the array. The text file should be read in from the command line.
I need assistance translating a custom C++ program to MIPS. My C++ code is the following:...
I need assistance translating a custom C++ program to MIPS. My C++ code is the following: I have made numerous attempts on my own to no avail, any assistance is appreciated. Also, template code for this solution is provided below: #include int moveRobots(int *, int *, int, int ); int getNew(int, int); int main() { int x[4], y[4], i, j, myX = 25, myY = 25, move, status = 1; // initialize positions of four robots x[0] = 0; y[0]...
this is a python code that i need to covert to C++ code...is this possible? if...
this is a python code that i need to covert to C++ code...is this possible? if so, can you please convert this pythin code to C++? def main(): endProgram = 'no' print while endProgram == 'no': print # declare variables notGreenCost = [0] * 12 goneGreenCost = [0] * 12 savings = [0] * 12 months = ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'] getNotGreen(notGreenCost, months) getGoneGreen(goneGreenCost, months) energySaved(notGreenCost, goneGreenCost, savings) displayInfo(notGreenCost, goneGreenCost, savings, months)...
I need the c# code for the below assignment. Complete PigLatin program in Windows Forms GUI....
I need the c# code for the below assignment. Complete PigLatin program in Windows Forms GUI. Zip the solution project file and attach to this submission. Do this in the GUI format (Windows Form). Be sure and add a Clear Button to reset for entering another word or words. PigLatinGUI Basic Steps in Creating your Program Create your user interface (GUI). Use different font styles but don’t overdo it, Use colors, and Use graphics (You can find all kinds of...
i need matlab code of heat equation in 1D with convection ?
i need matlab code of heat equation in 1D with convection ?
Need C++ code for following with a document describing the code as well: Write a program...
Need C++ code for following with a document describing the code as well: Write a program to implement the game of Tic Tac Toe Four. The game is played on a 4 × 4 chessboard, within 2 players. The player who is playing "X" always goes first. Players alternate placing Xs and Os on the board until either one player has four in a row, horizontally, vertically, or diagonally; or all 16 squares are filled(which is a draw). The program...
I need Urgent on the correct way to solve this, step by step process. The answers...
I need Urgent on the correct way to solve this, step by step process. The answers are 7.62, 7.62,6.92,20% and 7.41. Please HELP!!! Hula Enterprises is considering a new project to produce solar water heaters. The finance manager wishes to find an appropriate risk adjusted discount rate for the project. The (equity) beta of Hot Water, a firm currently producing solar water heaters, is 1.1. Hot Water has a debt to total value ratio of 0.3. The expected return on...
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT