Database System Concepts
Database System Concepts
7th Edition
ISBN: 9780078022159
Author: Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher: McGraw-Hill Education
Bartleby Related Questions Icon

Related questions

Question
What is the output of the following code (what is printed to the screen);
int main ()
float b[4] = {2.5,-4,0.2,3};
int d=b[2], p;
p=b[3];
p%=6;
cout << p <« b[1] << " " « d << endl;
return 0;
The following code does not follow the programmer's intent. Explain the programmer's intent (as
conveyed by the format of the code) and how to edit the code to follow the intended action.
int main()
int a;
cout << "Give me a number: ";
cin >> a;
if(a%10==0)
cout << "I like multiples of 10.\n";
else
cout << "I do not like that number. Please enter another number: ";
cin >> a;
cout <« "Thanks for entering another number.\n";
endl;
expand button
Transcribed Image Text:What is the output of the following code (what is printed to the screen); int main () float b[4] = {2.5,-4,0.2,3}; int d=b[2], p; p=b[3]; p%=6; cout << p <« b[1] << " " « d << endl; return 0; The following code does not follow the programmer's intent. Explain the programmer's intent (as conveyed by the format of the code) and how to edit the code to follow the intended action. int main() int a; cout << "Give me a number: "; cin >> a; if(a%10==0) cout << "I like multiples of 10.\n"; else cout << "I do not like that number. Please enter another number: "; cin >> a; cout <« "Thanks for entering another number.\n"; endl;
Expert Solution
Check Mark
Knowledge Booster
Background pattern image
Recommended textbooks for you
Text book image
Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education
Text book image
Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON
Text book image
Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON
Text book image
C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON
Text book image
Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning
Text book image
Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education