精装书封壳烫印有哪几种形式?
参考答案:
有5种形式:
(1)单一烫料;
(2)无烫料只烫压印痕;
(3)混合烫印;
(4)多种烫料;
(5)套烫。
下列给定程序中,函数fun()的功能是:实现两个整数的交换。例如给a和b分别输入60和65,输出为:a=65 b=60 请改正程序中的错误,使它能得出正确的结果。 注意:不要改动main函数,不得增行或删行,也不得更改程序的结构。 试题程序;#include<stdio.h>#include <conio.h>/*************found**************/void fun(int a,b) int t;/*************found**************/ t=b;b=a;a=t;main() int a,b; clrscr(); printf("Enter a, b: "); scanf("%d%d", &a,&b); fun(&a, &b); printf("a=%d b=%d\n ", a,b);