版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進行舉報或認領(lǐng)
文檔簡介
1、第一章習題1.4原碼:對于一個二進制數(shù)X,如果規(guī)定其最高位為符號位,其余各位為該數(shù)的絕對值, 并且規(guī)定符號位值為 0 表示正, 為 1 表示負, 采用這種方式的二進制編碼稱為該二進制數(shù)X 的原碼。補碼: 正數(shù)的補碼等于正數(shù)的原碼, 負數(shù)的補碼為其原碼除符號位不動外, 其余各位變反再加 1 所得。反碼:對于正數(shù)而言,反碼與原碼相同;對于負數(shù)而言,反碼符號位的定義與原碼相同,但需要將對應(yīng)原碼的數(shù)值位按位變反。1.5 和:差: 000100001.6 和 01073差 -03371.7 和 0x1AABA差 -0x53201.8( 251) 10=()2=(373) 8=( FB) 161.10在
2、16 位機中, 157 補 = 00000000-153 補= 1157-153=157+(-153)= (00000000) 2+(1) 2=(0000000000000100) 2=(4) 101.14算法設(shè)計:用變量s 存儲累加和, k 表示計數(shù) 描述為:1)定義變量s , k 。2) s 清零, k 賦初值 1。(3)判斷k<101?如果是,順序執(zhí)行(4);否則轉(zhuǎn)步驟(5);4) k 加到累加和變量s 中, k 加 1;轉(zhuǎn)步驟( 3)。5)輸出累加和s 。6)結(jié)束。開始結(jié)束int s=0,k=1;k<101?s=s+k;k=k+1;輸出 sNY 1.16第二章習題2.2 (
3、1) x, +, +, y (2)-, 0xabL(3)2.89e+12L(4) ” String+ ” FOO”(5)x, *, *, 2(6) ” X?/ ”(7)a, ?, b(8)x, -, +=, y(9)intx, =, +, 10(1 0) ” String ” ,“FOO”2.3不是表識符的如下:4th 首字母為數(shù)字sizeof 關(guān)鍵字x*y * 不是字母、數(shù)字、下劃線temp-2 - 不是字母、數(shù)字、下劃線isn t 不是字母、數(shù)字、下劃線enum 關(guān)鍵字2.4合法常數(shù):.120.L1.E-53.F 浮點型常量2L 333330377UL 0x9cfU 整型常量“ a”“”
4、字符串常量 45 a 字符常量非法常數(shù): 必須用轉(zhuǎn)義序列0x1ag 十六進制沒有g(shù)E20 沒有尾數(shù)部分 18要用八進制數(shù) xa 格式錯誤,可以是 xa“ 3 4”需要轉(zhuǎn)義序列” 需要轉(zhuǎn)義序列2.5(1)int a, b=5;(2)double h;(3)int x=2.3; 0.3 會被截取。(4)const long y=1; 必須賦初值(5)float a= 2.5*g; g 沒有定義。main 函數(shù)中。(6) int a=b=2; 在 turbo C 中編譯出錯:未定義的符號 b2.6( 1) 4( 2) 0( 3) 1( 4) 65) 8( 6) 0( 7) 3.00( 8) 1( 9
5、) 108( 10) 02.7 答案不確定( 1) a=b=c c 未定義( 2)正確( 3)正確( 4)正確( 5) a*+-b 表達式缺值(6) a11bAiA運算的操作數(shù)必須是整型,而i不是( 7) i*j%a%運算的操作數(shù)必須是整型,而a 不是( 8)正確( 9)正確( 10) int ( a+b) 應(yīng)該改成( int )( a+b)2.9( 1) 0( 2) -2( 3) 65535( 4) 56) 113( 7) -2( 8) -1( 9) 65532( 10) 32.10unsigned long encrypt(unsigned long x)unsigned long x0,
6、x1,x2,x3,x4,x5,x6,x7;x0=(x & 0x0000000F) << 8;x1=(x & 0x000000F0);x2=(x & 0x00000F00) << 8;x3=(x & 0x0000F000);x4=(x & 0x000F0000) << 8;x5=(x & 0x00F00000);x6=(x & 0x0F000000) >> 24;x7=(x & 0xF0000000);return(x0|x1|x2|x3|x4|x5|x6|x7);2.11#inclu
7、de<stdio.h> void main()unsigned long in;unsigned long a,b,c,d;scanf("%ld",&in);/in=1563;a=(in&0xff000000)>>24;b=(in&0x00ff0000)>>16;c=(in&0x0000ff00)>>8;d=in&0x000000ff;printf("%d.%d.%d.%d",a,b,c,d);2.15(k >>8)& 0xFF00) | (p &
8、amp; 0x00FF)<<8)2.16max=a>b?a>c?a:c:b>c?b:c;max=a > b ? (a > c) ? a : c):(b > c) ? b : c);2.17X=y>>nc>= 0 && c<= 9)? c0 : c2.19(a % 3 = 0) && (a % 10 = 5) ? a : 0;第三章習題3.1 函數(shù)原型是指對函數(shù)的名稱、返回值類型、參數(shù)的數(shù)目和參數(shù)類型的說明。其規(guī)定了調(diào)用該函數(shù)的語法格式,即調(diào)用形式。putchar 函數(shù)的原型為: int pu
9、tchar(int c);puts 函數(shù)的原型為: int puts(const char *s);printf函數(shù)的原型為:int print f(const char *format, );getchar 函數(shù)的原型為 :int getchar_r(void);gets 函數(shù)的原型為 :char * gets_r(char *s);scanf 函數(shù)的原型為:int scanf(const char *format, );3.2 不同點:puts為非格式輸出函數(shù),printf為格式輸出函數(shù); puts 函數(shù)的參數(shù)類型和數(shù)目一定( 一個字符串 ) ,printf 函數(shù)的參數(shù)類型和數(shù)目不固定;
10、puts 函數(shù)輸出后會自動換行, printf 函數(shù)沒有這一功能。相同點:二者都向標準設(shè)備輸出;二者返回值類型都為 int 。3.3 x1=-1,177777,ffff,65535x2=-3,177775,fffd,65533y1=123.456703,123.457,123.457,123.457( 注意對齊 )y2=123.449997,1.23450e+02,123.45x1(%4d)=-13.4 (1)%C;(2)%c;(3)%f;(4)%f;(5)%lu;(6)%d;(7)%d;(8)%d;(9)%f;(10)%Lf3.5 錯誤,運行提示為divide error正確,結(jié)果為b正確,
11、結(jié)果為*正確正確,但無法正常從結(jié)果中退出正確正確,結(jié)果為82,63編譯錯誤,提示 cannot modify a const object正確正確3.6 -6.70000-6177601123-203.8#include<stdio.h>void main()char c;c= getchar_r();if(c>='0'&&c<='9')|(c>='A'&&c<='F')|(c>='a'&&c<='f)if(c&
12、gt;='0'&&c<='9') printf("%dn",c-'0');else if(c>='A'&&c<='F')printf("%dn",c-'A'+10);elseprintf("%dn",c-'a'+10);elseputchar(c);3.9#include<stdio.h>void main()short num,high,low;printf(&
13、quot;Please input a short number:n");scanf("%hd",&num);low = 0x00ff & num;high = 0x00ff & (num >> 8);printf("The high byte is:%cn", high);printf("The low byte is:%cn", low);3.10#include "stdafx.h"int main(int argc, char* argv)unsigned sh
14、ort int x;unsigned short int high,low;printf("input a integer:n");scanf("%d",&x);high = (x>>12)&0x000f;low = (x<<12)&0xf000;x= x&0x0ff0;x=x|high|low;printf("%dn",x);return 0;3.11#include<stdio.h> void main()unsigned short int x,m,n;unsi
15、gned short int result;scanf("%hu%hu%hu",&x,&m,&n);result=(x>>(m-n+1)<<(15-n+1);printf("%hun",result);3.12#include<stdio.h>void main()float f,c;scanf("%f",&f);c=(5*(f-32)/9;printf("%.0f(F)=%.2f(C)n",f,c);或者#include<stdio.h&g
16、t;void main()int f;float c;scanf("%d",&f);c=(5*(f-32)/9;printf("%d(F)=%.2f(C)n",f,c);3.13#include <stdio.h>#define PI (3.1415926)int main(int argc, char* argv)double r, h;double s, v;printf("Please input the r and h.");scanf("%lf,%lf", &r, &h
17、);s = 2 * PI * r * h + 2 * PI * r * r;v = PI * r * r * h;printf("s is %lf, v is %lf", s, v);return 0;3.14#include "stdafx.h"int main(int argc, char* argv)char a4 = " 編"printf("機內(nèi)碼:%x%xtn",a0&0xff,a1&0xff);printf("區(qū)位碼: %xtn",a0&0xff<<
18、;8+a1&0xff-0x2020-0x8080);printf("國際碼:%xtn",a0&0xff<<8+a1&0xff-0x8080);return 0;第四章習題4.1#include <stdio.h>void main(void)float a,b,c;printf("Please enter the score of A:n");scanf("%f",&a);printf("Please enter the score of B:n");scan
19、f("%f",&b);printf("Please enter the score of C:n");scanf("%f",&c);if(a-b)*(a-c)<0)printf("A gets the score %.1f",a);if(b-a)*(b-c)<0)printf("B gets the score %.1f",b);if(c-a)*(c-b)<0)printf("C gets the score %.1f",c);4.3#inc
20、lude <stdio.h>int mdays(int y,int m)if (m=2) return (y%4=0 && (y%100=0 | y%400=0)?29:28;else if (m=4 | m=6 | m=9 | m=11) return 30;else return 31;main()int y,m,d,days;printf("Enter year:");scanf("%d",&y);printf("Enter month:");scanf("%d",&
21、;m);printf("Enter day:");scanf("%d",&d);days=d;while(m>1)days+=mdays(y,m-1);m-; printf("%dn",days);4.4 if 方法:#include "stdafx.h"#include <stdio.h>int main(int argc, char* argv)float x = 0;printf("input the salaryn");scanf("%f",
22、&x);if(x<0)printf("wrongn");else if(x>0 && x<1000)printf("0n");else if(x<2000)printf("%fn",x*0.05);else if(x<3000)printf("%fn",x*0.1);else if(x<4000)printf("%fn",x*0.15);else if(x<5000)printf("%fn",x*0.2);el
23、seprintf("%fn",x*0.25);return 0;Case方法:#include "stdafx.h"#include <stdio.h>int main(int argc, char* argv)float x ;printf("input the salaryn");scanf("%f",&x);int xCase = 0;xCase = (int)(x/1000.0);switch(xCase)case 0:printf("0n");break;case
24、1:printf("%fn",x*0.05);break;case 2:printf("%fn",x*0.1);break;case 3:printf("%fn",x*0.15);break;case 4:printf("%fn",x*0.2);break;default:printf("%fn",x*0.25);return 0;4.7#include "stdafx.h"#include <stdio.h>int main(int argc, char* ar
25、gv)char *sa;char c;int i = 0,j = 0,k = 0;doc= getchar_r();sai+ = c;while(c != 'r');for(i=0;sai+1;i+)for(j = i+1;saj;j+)if( sai=saj && saj =' ') for(k=j;sak;k+) sak = sak+1;j-;for(k=0;sak;k+) printf("%2c",sak);return 0;4.10#include <stdio.h>#define EPS 1e-5 voi
26、d main() int s=1;float n=1.0,t=1.0,pi=0;while(1.0/n>=EPS) pi=pi+t;n=n+2;s=s*(-1);t=s/n;pi=pi*4;printf("pi=%10.6fn",pi);4.11#include<stdio.h> int main()int a,b,num1,num2,temp;printf("Input a & b:");scanf("%d%d",&num1,&num2);if(num1>num2)temp=num1;
27、 num1=num2; num2=temp;a=num1; b=num2;while(b!=0)temp=a%b;a=b;b=temp;printf("The GCD of %d and %d is: %dn",num1,num2,a);printf("The LCM of them is: %dn",num1*num2/a);4.13#include "stdafx.h"#include <stdio.h>int Primes(int x);/ 判斷素數(shù)函數(shù)int main(int argc, char* argv)in
28、t i,j;int num;for(num = 4;num<=100;num+)if(num%2 = 0)for(i=1;i<num;i+)for(j=1;j<num;j+)if(num = i+j)if(Primes(i) && Primes(j)printf("%d=%d+%dn",num,i,j);return 0;int Primes(int x)int i ;int n = 0;for(i = 1;i<=x;i+)if(x%i=0) n+;if(n=2)return 1;elsereturn 0;4.17#include&l
29、t;stdio.h>void main(void)int c,i;for(i=1,c=32;c<=126;+i,+c)printf("%3d%-5c",c,c);if(!(i%8) printf("n");4.18#include "stdafx.h"#include <stdio.h>int main(int argc, char* argv)int x;int i,n,sum;printf("input 10 numbersn");for(i = 0,n = 0,sum = 0;i<
30、;10;i+)scanf("%d",&x);if(x >0)sum+=x;n+;if(n)printf("numbers = %d,average = %fn",n,1.0*sum/n);return 0;第五章習題5.5Extern 和 static 存儲類型的區(qū)別:Static 型外部變量和 extern 型外部變量的唯一區(qū)別是作用域的限制。靜態(tài)外部變量只能作用于定義它的文件, 其他文件中的函數(shù)不能使用。 Extern 型外部變量的作用域可以擴大到整個程序的所有文件。Static 和 auto 存儲類型的區(qū)別:靜態(tài)局部變量和自動變量有根
31、本性的區(qū)別。 由于靜態(tài)局部變量在程序執(zhí)行期間不會消失, 因此,它的值有連續(xù)性。當退出塊時,它的值能保存下來,以便再次進入塊時使用,而自動變量的值在退出塊時都丟失了。 如果定義時靜態(tài)局部變量有顯示初始化, 只在第一次進入時執(zhí)行一次賦初值操作,而自動變量每次進入時都要執(zhí)行賦初值操作。5.6不能。在 C 語言中, 參數(shù)的傳遞方式是 “值傳遞 ” , 即把實參的值拷貝到參數(shù)的存儲區(qū)中。 因此, swap() 函數(shù)交換的只是實參的本地拷貝,代表swap()實參的變量并沒有被改變。5.7 6, 125.10#include <stdio.h>double sum_fac(int n)doubl
32、e s=0;int i;double fac=1.0;for(i=1;i<=n;i+)fac*=1.0/i;s+=fac;return s;void main(void)int n;printf("Please enter the integer n:");scanf("%d",&n);printf("the sum is %lfn",sum_fac(n);5.17#include <stdio.h>void reverse()char ch= getchar_r(); if(ch!='n')
33、reverse();putchar(ch);int main()reverse();printf("n");return 0;第六章習題6.1(1) 正確(2)錯誤,不需要加“; ”(3)錯誤," ident與" “(”之間不能有空格(4)錯誤,宏名不能是關(guān)鍵字“ void ”(5)錯誤,將x*y 改成 (x ) *(y)6.4將會導致變量blue 的重復定義6.5(1) define NO 0(2)#include “ common.h”(3)#line 3000(4)#undef TRUE#define TRUE 1(5)#if TRUE !=0#d
34、efine FALSE 0#else#define FALSE 1#endif(6)#ifndef SIZEassert(0);#elseassert(SIZE<10&&SIZE>1);#endif(7)#define SQUARE_VOLUME(x) (x)*(x)*(x)6.10#include <stdio.h>#define pi 3.1415926#define BALL_VOLUME(r) (4/3)*pi*(r)*(r)*(r) int main()int r;float v11;for(r=1;r<11;r+)vr=float(BA
35、LL_VOLUME(r);printf("r=%2d v=%.2fn",r,vr);return 0;第七章習題7.9#include<stdio.h>#include<graphics.h>#define g 10void main()char *buffer;int gdriver=DETECT,gmode,i,size;initgraph(&gdriver,&gmode,"c:tcbgi");setbkcolor(BLUE);setcolor(RED);setlinestyle(0,0,1);setfills
36、tyle(1,5);circle(200,250,RED);size=imagesize(200,250,200,300);buffer=malloc(size);getimage_r(200,250,200,300,buffer);for(i=0;i<=10;i+)putimage(200,250+g*i*i/2,buffer,COPY_PUT);getch_r();closegraph();7.11#include<stdio.h>#define RAND_MAX 32767#define RAND 100int RandomInteger(int low,int hig
37、h)int k;double d;d=(double)rand()/(double)RAND_MAX+1);k=(int)(d*(high-low+1);void main() long i;int n=0;int szWordRAND;char a="heads"char b="tails"srand(time(0);for(i=0;i<RAND;i+)szWordi=RandomInteger(0,1);if(szWordi=1)printf("n%s",a);n+;elseprintf("n%s",b)
38、;n=0;if(n=3)printf("nIt took %ld flips to get heads 3 consecutives times",i+1);break;7.16char *MonthName(int month);int MonthDays(int month,int year);int FirstDayOfMonth(int month,int year);int IsLeapYear(int year);enum weakSUNDAY ,MONDAY,TUESDAY,WEDNESDAY,THURSDAY,FRIDAY,SATURDAY;#include
39、“caltools.hchar *MonthName(int month)Switch(month)January ” );February ” );March” );April ” );May” );Case 1: return(Case 2: return(Case 3: return(Case 4: return(Case 5: return(Case 6:return(June” );Case 7:return(July ” );Case 8:return(August ” );Case 9:return(September” );Case 10:return(“ October ”
40、);Case 11:return(“ Novembe”r );Case 12:return(“ Decembe”r );Default :printf(“input error!nint MonthDays(int month,int year)Case 1:Case 3:Case 5:Case 7:Case 8:Case 10:Case 12: return(31);Case 4:Case 6:Case 9:Case 11: return(30);Case 1: return (IsLeapYear(year)?29:28);int FirstDayOfMonth(int month,int
41、 year)Int i;Long total=0;If(year=2000)For(i=1;i<month;i+)Total+=( MonthDays(i, 2000);Return(total%7+6)%7);)Else if(year>2000)For (i=2000;i<year;i+)Total+=(IsLeapYear(i)?366:365);For(i=1;i<month;i+)Total+=( MonthDays(i, year);Return(total%7+6)%7);)Else if(year=1999)For(i=12;i>month;i-)
42、Total+=( MonthDays(i, 1999);Return(13-total%7)%7);ElseFor (i=1999;i<year;i-)Total+=(IsLeapYear(i)?366:365);For(i=12;i>month;i-)Total+=( MonthDays(i, year);Return(13-total%7)%7);int IsLeapYear(int year)Return ( !(year%4)&&(year%400) | !(year%400) );#include <stdio.h>#include “calt
43、ools.h ”Void main()Int month,year;Printf( “ please input the month and year:” );Scanf( “ %d%” d ,&month,&year);Printf( “the name of the month is %sn ” , MonthName( month);Printf(“there are %d days in this month.n ” , MonthDays( month,int year);Printf(“the first day of the month in this year
44、is %d” ,FirstDayOfMonth( month,year);第八章習題8.4#include "stdafx.h"#include "malloc.h"#define N 65535void DelSpace(char sa);int main(int argc, char* argv)char saN;char c;int i =0;doc = getchar_r();if(c = 13)sai+ = 'n'elsesai+ = c;while(c!='');DelSpace(sa);int j = 0;w
45、hile(1)if(saj = '')break;printf("%c",saj+);printf("/n");return 0;void DelSpace(char sa)char *t1 = (char*)malloc(sizeof(sa);char *t2 = (char*)malloc(sizeof(sa);t1 = t2 = sa;while(*t1)*t2+ = *t1+;if(*(t2-1)=' ' && *t1=' ')t2-;還有一個方法void DelSpace(char
46、 sa,int n)char* tmpbuf = (char*)malloc(sizeof(sa)+1);int p1 = 0, p2 = 0;bool bSpace = false;while(p1 < n)if(bSpace && sap1 = ' ')p1+;elseif(sap1 = ' ')bSpace = true;elsebSpace = false;tmpbufp2+ = sap1+;strcpy(sa, tmpbuf);free( tmpbuf);8.7#include "stdafx.h"#defin
47、e NUM 100struct stuInfochar name10;int mark;stuNUM;void scoreSort(stuInfo stu,int n);int main(int argc, char* argv)int n;printf("input the number of students:n");scanf("%d",&n);printf("intput the name and scoren");for(int i = 0;i<n;i+)scanf("%s",&st
48、);scanf("%d",&stui.mark);scoreSort(stu,n);int j = 0;while(j<n)printf("name:%s score:%dn",,stuj.mark);j+;return 0;void scoreSort(stuInfo *stu,int n)/n為學生數(shù)for(int i= 0;i<n;i+)for(int j =i;j<n;j+)if(stui.mark<stuj.mark)stuInfo temp;temp = stui;stui =
49、stuj;stuj = temp;8.9/ c84.cpp : Defines the entry point for the console application./#include "stdafx.h"#define NUM 100 struct stuInfochar name10;int mark;stuNUM;void scoreSort(stuInfo stu,int n);int find(stuInfo *stu,int n,int score);int main(int argc, char* argv)int n;printf("input
50、the number of students:n");scanf("%d",&n);printf("intput the name and scoren");for(int i = 0;i<n;i+)scanf("%s",&);scanf("%d",&stui.mark);scoreSort(stu,n);printf("input the socre you want to findn");int score;scanf("%
51、d",&score);int ifind =find(stu,n,score) ;if(ifind>=0)printf("name:%s score:%dn",,stuifind.mark);elseprintf("Not Find");return 0;void scoreSort(stuInfo *stu,int n)/n為學生數(shù)for(int i= 0;i<n;i+)for(int j =i;j<n;j+)if(stui.mark<stuj.mark)stuInfo temp;te
52、mp = stui;stui = stuj;stuj = temp;int find(stuInfo *stu,int n,int score)int i = 0,j = n -1,mid;while(i <= j)mid = (i+j)/2;if(score<stumid.mark)j = mid-1;else if(score>stumid.mark)i = mid +1;elsereturn mid;return -1;8.11#include "stdafx.h"#include "malloc.h"int *strnins(c
53、har *s,char *t,int n);int main(int argc, char* argv)char *s = "abcd"char *t = "ttt"int n = 2;strnins(s,t,n);return 0;int *strnins(char *s,char *t,int n)char *p = (char*)malloc(sizeof(s)-1) ;int tlong = 0;/ 字符串 t 的長度 while(ttlong !='')tlong+;int i = n;int j = 0;while(j<
54、n)(Pj=sj;j+;)j=0;while(si != "&&tj!=")(pi+tlong = si;Pi= tj;i+;j+;)if(si='')(Pi = tj;i+;j+;)else if(tj='')(pi+tlong = si;i+;printf("%s",p);free(p);printf("n");return 0;8.18#include "stdafx.h"#define n 200void del(int *str,int m,int lent
55、h);int main(int argc, char* argv)int i=0,j=-1,strn;int total = 0;int m = n;while(j<m)i+;j+;if(i=3)/ 數(shù)到 3del(str,j+1,m);total+;i=0;m-;if(total = n-1)/ 如果退出了 N-1 個人break;if(j = m)/ 循環(huán)到最后一位j=-1;printf("%d",j);return 0;void del(int *str,int m,int lenth)將編號為 m以后的往前移一位int i =m;while(i<lent
56、h)stri = stri+1;i+;第九章習題9.2#include<stdio.h>void half(int x);void main()int x;printf("please input an interer:n");scanf("%d",&x);half(x);void half(int x)int k;char*p;char up_half,low_half;p=(char *)&x;p=p+1;for(k=1;k>=0;k-)low_half=(*p)&0x0f;if(low_half<10
57、)low_half |='0'elselow_half=(low_half-10)+'A'up_half=(*p>>4)&0x0f;if(up_half<10)up_half |='0'elseup_half=(up_half-10)+'A'p-;printf("%c %cn",up_half,low_half);9.3#include<stdio.h>void chachen(int *x,int *y);main()int a3,b3;int *x,*y,i;x=&am
58、p;a0;y=&b0;printf("please input 3 numbers of vector x:n");scanf("%d%d%d",x,x+1,x+2);printf("please input 3 numbers of vector y:n");scanf("%d%d%d",y,y+1,y+2);chachen(x,y);void chachen(int *x,int *y)int i,j,a,b,c;int k='i'int *pz,z33;pz=&z00;for(i=0,j=0;j<3;j+)*(pz+3*i+j)=k+;for(i=1,j=0;j<3;j+)*(pz+3*i+j)=*(x+j);for(i=2,j=0;j<3;j+)*(pz+3*i+j)=*(y+j);a=(*(pz+3*1+1)* (*(pz+3*2+2)-
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負責。
- 6. 下載文件中如有侵權(quán)或不適當內(nèi)容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 2022~2023事業(yè)單位考試題庫及答案第884期
- 2026屆海南省天一聯(lián)考高三上學期期末考試歷史試題(含答案)
- 商法總論考試題及答案
- 汽車原理設(shè)計試題題庫及答案
- 脊柱護理科普演講
- 輔警教育培訓課件
- 2026年深圳中考語文基礎(chǔ)提升綜合試卷(附答案可下載)
- 2026年深圳中考物理電生磁專項試卷(附答案可下載)
- 2026年大學大二(家政教育)家政服務(wù)人才培養(yǎng)方案階段測試題及答案
- 荷花的題目及答案
- 金融反詐課件
- 人事社保專員年度工作總結(jié)
- 2025年河南省公務(wù)員考試《行測》真題和參考答案(網(wǎng)友回憶版)
- 體系培訓文件課件9001
- 外科急危重癥護理
- 生物實驗室樣本管理制度
- GB/T 45451.1-2025包裝塑料桶第1部分:公稱容量為113.6 L至220 L的可拆蓋(開口)桶
- GB/T 44819-2024煤層自然發(fā)火標志氣體及臨界值確定方法
- 《風力發(fā)電廠調(diào)試規(guī)程》
- 搞笑小品劇本《我的健康誰做主》臺詞完整版-宋小寶徐崢
- 正大天虹方矩管鍍鋅方矩管材質(zhì)書
評論
0/150
提交評論