65 lines
1.7 KiB
Plaintext
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.

## C语言-1
```c
/*------------------------------------------------------------------------------
【程序设计】程序实现的功能是:输入字符串(不包含空格),删除其中的数字字符后输出。
输入输出如下:
hello 123 world
去掉数字后的字符串为hello world
------------------------------------------------------------------------
注意部分源程序给出如下。请勿改动主函数main或其它函数中给出的内容否则不得分。
仅在Program-End之间填入若干语句。不要删除标志否则不得分。
------------------------------------------------------------------------------*/
#include<stdio.h>
#include <string.h>
void main()
{
char a[100],b[100];
int l,i,j;
gets(a);
l=strlen(a);
j=0;
/**********Program**********/
for(i=0;i<l;i++){
if(a[i] > '9' || a[i] < '0'){
b[j++]=a[i];
}
}
/********** End **********/
b[j]='\0';
printf("去掉数字后的字符串为:");
puts(b);
}
```
## C语言-2
```c
/*------------------------------------------------------------------------------
【程序设计】输入一个整数k, S=1*2*3*…*n求S不大于k时最大的n。
------------------------------------------------------------------------
注意部分源程序给出如下。请勿改动主函数main或其它函数中给出的内容否则不得分。
仅在Program-End之间填入若干语句。不要删除标志否则不得分。
------------------------------------------------------------------------------*/
#include<stdio.h>
void main()
{
int i=1,k,s=1;
/**********Program**********/
scanf("%d", &k);
while(1){
if(s > k){
break;
}
i++;
s*=i;
}
i--;
/********** End **********/
printf("%d\n",i);
}
```