Question

IN C Copy the code below in to the answer space then fill in the blank...

IN C
Copy the code below in to the answer space then fill in the blank lines with only one statement in order to get the required output shown below:

int a=4, b=10, sum;
bool bGo = true;
while(bGo == true)
{
_____________________;
_____________________;
_________;
_________;
_________;
If (________)
____ = _____;
}

Required output
a= 4 b = 10
a= 5 b = 8

0 0
Add a comment Improve this question Transcribed image text
Answer #1

Here is code:

int a = 4, b = 10, sum;

bool bGo = true;

while(bGo == true){

printf("a = %d ",a);

printf("b = %d\n",b);

a++;

b--;

b--;

if(a == 6)

bGo = false;

}

Output:

Add a comment
Know the answer?
Add Answer to:
IN C Copy the code below in to the answer space then fill in the blank...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • Answer the question #9 and fill in the blank space. Shows the calculation!!(Explain the answer not...

    Answer the question #9 and fill in the blank space. Shows the calculation!!(Explain the answer not just fill in the black space!!!). This is Assembly Language question. Complete the following table (Make sure all celled are filled): mov eax 278901 EAX BASE 8:

  • 1) Copy and paste the code below into your IDE, and then answer the question. if...

    1) Copy and paste the code below into your IDE, and then answer the question. if (false) { System.out.println("Hello"); } What happens and why? A) Hello is not displayed because the if statement is false B) "Hello" is displayed even if the if statement is false because the semicolon is cutting it off from its body C) Program does not run due to a compiler error ie semicolon D) "Hello" is displayed since the expression in the if statement registers...

  • I need a program in c++ the same as below code but I want it to...

    I need a program in c++ the same as below code but I want it to prompt the user to enter the number of elements after that I want it to ask the user to enter the array elements #include<algorithm> #include<stdio.h> #include<string.h> #include<iostream> using namespace std; int a[50]={2,5,4,3}; bool x[100]; int N=4;//number of elements    int k=10;//target sum int sum;//current target sum int cmp(const void *a,const void *b) { return *(int *)b-*(int *)a; } void backtrace(int n) { if(sum>k) return...

  • In C++ Do not use a compiler like CodeBlocks or online. Trace the code by hand....

    In C++ Do not use a compiler like CodeBlocks or online. Trace the code by hand. Do not write "#include" and do not write whole "main()" function. Write only the minimal necessary code to accomplish the required task.                                                                                                           Save your answer file with the name: "FinalA.txt" 1) (2 pts) Given this loop                                                                                              int cnt = 1;     do {     cnt += 3;     } while (cnt < 25);     cout << cnt; It runs ________ times    ...

  • (d) (20 points) Convert the following C code to ARM assembly. And indicate the HEX values of the ...

    (d) (20 points) Convert the following C code to ARM assembly. And indicate the HEX values of the Stack and Data sections in the table below. Note: you do not necessary have to fill in each blank space in the table. Address Value ーC Code int Arr [ ]= {2, 13, 5); int main (void) 0xFFFFFFFC StackOxFFFFFFF8 int Sum; Sum-Ar[0]+A+2*Arr[2] return 0 OxFFFFFFF4 0XFFFFFFFO | 0x0001000C Data Ox00010008 0x00010004 000010000 5 point (d) (20 points) Convert the following C code...

  • Use C, , C, or both C and C to fill in the blank below to...

    Use C, , C, or both C and C to fill in the blank below to make a true statement. {а, b} {z, a, y, b, х, c} О А. С О В. Е О с. С and C O D. C

  • Attached to this assignment as a separate document is the C++ code for a program that...

    Attached to this assignment as a separate document is the C++ code for a program that determines if a given string is a palindrome or not. A palindrome is a word that is spelled the same backward or forward. "bob" is an example of a palindrome. The program is sometimes a talking point during lecture, and may not fully adhere to the many bobisms I've been telling you about. In fact, it may not entirely work but that wasn't its...

  • What is the output from each of the following segments of C++ code? Record the output...

    What is the output from each of the following segments of C++ code? Record the output after the “Answer” prompt at the end of each program fragment. Assume all variables have been suitably declared. (Each problem is worth 3 points.) 1. for (int j = 25; j > 16; j -= 3)        cout << setw(5) << j;     Answer: 2. int sum = 0;       for (int k = -2; k <= 2; k++)         sum = sum +...

  • (a)How many times does the code snippet given below display "Hello"? int x = 1; while...

    (a)How many times does the code snippet given below display "Hello"? int x = 1; while (x != 15) {    System.out.println ("Hello");    x++; } (b)What is the output of the following code fragment? int i = 1; int sum = 0; while (i <= 5) {    sum = sum + i;    i++; } System.out.println("The value of sum is " + sum); Quie 2 What is the output of the following snipped code? public class Test {...

  • This is a fill in the code type: // FILL IN THE CODE - Write a...

    This is a fill in the code type: // FILL IN THE CODE - Write a program to multiply 2 numbers, print out the results and print out the original numbers in ascending order. #include <iostream> using namespace std; int main() {   int num1;       // holds 1st number   int num2;       // holds 2nd number   int result;       // holds result of multiplication   int *num1Ptr = nullptr; // int pointer which will be set to point to the 1st number   int *num2Ptr...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT