C程序作业

发布 2022-08-30 13:36:28 阅读 4124

1. c#的每条语句都通过__;来结束。

2. 变量在使用前,必须先__定义__和__声明___

3. 通过_()可以改变运算符的运算顺序,使表达式更加清晰易懂。

4. 下列变量的声明方式不正确的是( a )。

a. int a, string b, char cb. int a=c=b=21;

c. char ad. string mystring =”abc”;

5.下面的标识符中,不否合法的是: 3a, class, public

class ,public, 3a, _3a, a3,a#

6. 将下列各式写成c#语言表达式。

(1) b=b×a

b*=a2) 以知a=15,计算a×100÷8,并将结果赋给变量b。

double a = 15,b;

b = a * 100 / 8;

输出的结果为: "b);

7. 求下面算术表达式的值,并编写程序运行,验证其结果。

1)x+a%3*(int)(x+y)%2/4,其中x=2.5,a=7,y=4.7

int a = 7;

double x = 2.5, y = 4.7;

double b = x + a % 3 *(int) (x + y) %2 / 4;

算术表达式的值为:",b);

2)x+‘a’+(float)(a+b)/2+x%y,其中a=2,b=3,x=3.5,y=2.5;

int a = 2,b=3;

double x = 3.5, y = 2.5;

double d = x + a' +float) (a + b) /2 + x % y;

算术表达式的值为:",d);

8.输入一个3位数的整数,编写一个程序,将它的十位数和百位数互换位置。

输入三位数的整数: "

string x =

int y =

int a = y / 100;

int b = y / 10 % 10;

int c = y % 10;

int d = b * 100 + a * 10 + c;

变换之后的值:",d);

9.从键盘输入两个整数并输出较大数(用条件表达式求解)。

输入一个整数: "

string x =

输入一个整数: "

string y =

int a =

int b =

int d;

d = a > b ? a : b;

较大数为:",d);

程序c 作业

4 9源程序 include classrectangle public rectangle inttop,intleft,intbottom,intright rectangle intgettop const intgetleft const intgetbottom const intgetr...

C 程序作业

1.工人工资程序问题 include void main int t,w,s cout 请输入工人每周工作的时间和单位报酬 cin t w if t 40 s t w elses t w t 40 2 w cout 工人应得的工资 2.计算托运的费用 include void main double...

C程序作业答案

什么是程序及程序设计。程序 program 是为实现特定目标或解决特定问题而用计算机语言编写的命令序列的集合。为实现预期目的而进行。操作的一系列语句和指令。一般分为系统程序和应用程序两大类。程序设计 programming 是指设计 编制 调试程。序的方法和过程。它是目标明确的智力活动。由于程序是软...