c++程序代写(qq:928900200)

1. Both main memory and secondary storage are types of memory. Describe the difference 
between the two.

2. What is the difference between system software and application software?

3. Why must programs written in a high-level language be translated into machine
language before they can be run?

4.  In C++, to display data on your monitor you use the << operator. What do you call this 
operator? 

5. What is wrong with this program and how you fix it so it compiles?

int main()
}
// A crazy mixed up program
return 0;
#include <iostream>
cout << "In 1942 Columbus sailed the ocean blue.";
{
using namespace std;
 
6. A program has the following variable definitions.

long miles;
int feet;
float inches;

Write one cin statement that reads a value into each of these variables.

7. Write C++ statements using combined assignment operators to perform the following:
a) Add 6 to x
b) subtract 4 from amount
c) Multiply y by 4
d) divide total by 27
e) store in x the remainder of x divided by 7

8. Complete the following table by writing the value of each expression in the Value column

EXPRESSION  VALUE
-----------  -----
28/4  - 2

6 + 12 * 2 -8

4 + 8 * 2

6 + 17  % 3 - 2

2 + 22 * (9 - 7)
 
9. The following program ues an if/else if statement  to assign a letter grade 
     (A,B,C,D, or F) to a numeric test score. THE PROGRAM HAS ERRORS. Find as
     many as you can.

#include <iostream>
using namespace std;

int main() {

int testscore;
cout << "Enter your test score and I will tell you \n";
cout << "the letter grade you earned: ";
cin >> testscore;

if (testscore < 60)
   cout << "your grade is F.\n";
else if (testscore < 70)
   cout << "your grade is D.\n";
else if (testscore < 80)
   cout << "your grade is C.\n";
else if (testscore < 90)
   cout << "your grade is B.\n";
else 
   cout << "THAT IS NOT A VALID SCORE.\n");
else if (testscore <= 100)
   cout << your grade is A.\n");

return 0;
}

10. Write a program that asks the user to enter two numbers. The program should use the
    conditional operator to determine which number is the smaller and which is the larger.
 
11. Write a program that reports the contents of a compressed-gas cylinder based
   on the first letter of the cylinder‘s color. The program input is a character
   representing the observed color of the cylinder: ‘Y‘ or ‘y‘ for yellow, ‘O‘ 
   or ‘o‘ for orange, and so on. Cylinder colors and associated contents are as 
   follows:

        Orange ammonia
  Brown  carbon monoxide
  Yellow  hydrogen
  Green  oxygen

   Your program should respond to input of a letter other than the first letters
   of the given colors with the message, "contents unknown."

12. Write a program that uses a "for" statement to calculate the average of 
   several integers. Assume that the last value read is the sentinel value
   99999. For example, 10 8 7 13 9 9999 indicates that the program should 
   calculate the average of all the values preceding 9999

13.  Assume "value" is an integer variable. If the user enters 3.14 in response to the following 
programming statement, what will be stored in value?   

     int value;
    cin >> value;

    a) 3.14
    b) 3
    c) 0

14.  You studied Type Casting in Chapter 3. Type casting allows you to perform manual data type
conversion.           

Assume the following definitions:
       int a = 5, b = 12;
       double x = 3.4, z = 9.1;

What are the values of the following expressions?
     a) b/a
     b) x * a
     c) static_cast<double>(b/a)
     d) static_cast<double>(b) / a
     e) b / static_cast<int>x;

15. cout object provides a way to format the data that is displayed on the screen. To format data,
you include the header file <iomanip>.  To set the field width, you use the stream manipulator setw.
See Chapter 3. For example, if you like to display the number 15 in a field of width 5 spaces, you 
would write        

 int number = 15;
cout << setw(5) << number;

This will display the number in a field 5 spaces wide, right-justified. 
Write cout statement with stream manipulators that perform the following:
      a) Display the number 34.789 in a field of 9 spaces with 2 decimal places of precision
      b) Display the number 67 left justified in a field of 7 spaces.

16.  Indicate whether the following statements about relational expressions are correct or incorrect.
    a) x <= y is the same as y > x
    b) x != y is the same as y >= x
    c) x >= y is the same as y <= x

17. Rewrite the following code using a do-while statement with no decisions in the loop body: 
   sum = 0;
   for (odd = 1; odd < n; odd = odd + 2)
   sum = sum + odd;

18. What three things do you need to do to use a function in your program? Explain each one of them 
giving examples.
 

c++程序代写(qq:928900200)

时间: 2024-10-12 07:56:50

c++程序代写(qq:928900200)的相关文章

java图形图像SVG转PPM程序代写 qq:928900200

Background Many image file formats encode image data as a 2-D matrix or raster of pixel colors. The amount of available color information is fixed by the image's width and height of its resolution. If the resolution is too small, you will have proble

C语言程序代写(QQ:928900200)

1.学生成绩统计 要求描述: 用结构数组实现学生信息的统计功能. struct student { long no; /*学号*/ char name[10]; /*姓名*/ char sex; /*性别*/ int age; /*年龄*/ float score; /*平均成绩*/ } 完成下列任务: (1) 输入实际学生人数 n (2<n<6): (2) 输入每个学生的信息,组成结构数组,并输出: (3) 统计男.女生人数并输出: (4) 计算全班平均成绩并输出: (5) 将低于全班平均成

C语言程序代写(qq:928900200)

1cs3157 – Advanced ProgrammingSummer 2014, Project 1, 150 pointsJune 17, 2014Follow these step-by-step instructions. This homework must be submitted electronically bySunday night July 6th, 11pm. Please start early, so we can help if you get stuck.In

程序设计实践C++ 程序代写(QQ 928900200)

程序设计实践 采用C++作为编程语言. 设计开发一个"学生信息"管理系统.该系统模拟数据库管理系统(DBMS)的功能,为用户提供数据存储.查找的能力. 该系统存储的学生信息包括: 学号.姓名.性别.语文成绩.数学成绩 如:1001.张三.男.80.90 系统支持用户通过输入命令,实现与系统的交互.系统支持的命令包括: 1)新增数据命令:向系统中新增数据.命令语法格式如下: ADD(数据) ---其中,ADD为命令名: ---括号中,"数据"为用户输入的新数据,包含描

C++程序代写实现HashSet class

C++程序代写实现HashSet class 专业程序代写(QQ:928900200) Implement a HashSet class for elements of type string.It has the following functions: bool add(const string &)bool contains(const string &) constint size() constIn this exercise, you need to implement so

基于JAVA WEB技术旅游服务网站系统设计与实现网上程序代写

基于JAVA WEB技术旅游服务网站系统设计与实现网上程序代写 专业程序代写服务(QQ:928900200) 随着社会的进步.服务行业的服务水平不断发展与提高,宾馆.酒店.旅游等服务行业的信息量和工作量日益变大,而传统的人工管理方式已经远远不能满足现在旅游的服务方式.传统的旅游方式经分析其有诸多的缺陷,存在数据维护效率低下,不易保管,容易丢失和出错.同时查询也不方便,劳动力成本过高导致的旅游资源信息不方便,也在一定程度上导致了对各种信息反应缓慢,容易丧失商机.为了弥补上述缺陷,便于开展旅游预订工

board game作业代写、代写board game程序、C程序代写

board game作业代写.代写board game程序.C程序代写Watch Your Back! is a fast-paced combat board game. You control a team of ruthless roguesengaged in a fight to the death against your enemies. Within the confines of a checkerboardthere is no rulebook and no referee

二叉树程序代写

1.系统说明  输入一个正整数N,然后随机产生N个整数,创建一个二叉树(左子树≤父节点≤右子树).  使用Windows程序设计,在窗体的客户区自动地画出创建二叉树的过程,并动画演示中序遍历.2.系统要求  自动计算每个节点的坐标,节点圆的半径可设置,节点间的距离可设置,左右子树的角度可设置:  二叉树的大小可能超出窗体客户区的大小,因此需设立窗体的水平与垂直的滚动条:  动画演示遍历时,标出节点的顺序.二叉树程序代写,布布扣,bubuko.com

基于j2ee的程序代写MVC架构

人力资源管理系统 完成系统静态页面设计,页面数量不少于10个,页面需用CSS进行美化,并为需要验证的信息利用JavaScript提供客户端验证.要求至少包含部门信息及部门内员工信息的添加.修改.删除和查询以及员工培训信息维护等功能页. 35 页面内容饱满.页面数量超过15个 设计数据库表部门信息表.员工信息表及员工培训信息表至少三张表,数据库信息设计合理.基于第一次作业所做静态页面使用JSP+JavaBean实现部门信息及部门内员工信息的添加.修改.删除和查询以及员工培训信息维护等功能. 40