1
0
mirror of https://github.com/renbaoshuo/202401-programming-assignments.git synced 2024-11-23 15:48:42 +00:00
202401-programming-assignments/【实践课外】10.函数1/6-3 求一个大于10的n位整数w的后n-1位的数,并作为函数值返回。.md

39 lines
788 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 6-3 求一个大于10的n位整数w的后n-1位的数并作为函数值返回。
编写函数fun其功能是:求一个大于10的n位整数w的后n-1位的数并作为函数值返回。例如当w=1234时返回234。
### 函数接口定义:
```c
在这里描述函数接口。例如:
int fun(int w);
```
在这里解释接口参数。例如:其中 `w` 是用户传入的参数。函数须返回 `w` 除最高位外的值。
### 裁判测试程序样例:
```c
在这里给出函数被调用进行测试的例子。例如:
#include <stdio.h>
int fun(int w);
int main()
{ int m;
scanf("%d", &m);
printf("%d\n", fun(m));
return 0;
}
/* 您的程序将被嵌入在这里 */
```
### 输入样例:
```in
1234
```
### 输出样例:
```out
234
```