题库的操作题(未完)

Posted ???!!!

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了题库的操作题(未完)相关的知识,希望对你有一定的参考价值。

/*编写函数,实现从键盘上输入一个小写字母,将其转化为大写字母。*/
/*
#include<stdio.h>
int zhuanhua(char s);
void main(){
    char s;
    printf("请输入一个字符:");
    scanf("%c",&s);
    printf("转化前为:%c\n",s);
    s=zhuanhua(s);
    printf("转化后为:%c\n",s);
}
int zhuanhua(char s){
    char S;
    S=s-32;
    return S;
}
*/
/*计算并输出500以内最大的10个能被13或17整除的自然数之和*/

/*
#include<stdio.h>
int jisuan(int n);

void main(){
    int n=500;
    printf("和是%d\n",jisuan(n));
}
int jisuan(int n){
    int i,sum=0;
    for(i=1;i<n;i++)
        if(i%13==0||i%17==0)
            sum+=i;
    return sum;
}
*/
/*将字符串str中的小写字母全部转换成大写字符串。函数原型可声明为:“void  toUpperCase( char  str[ ]) ; ”*/
/*
#include <stdio.h>
#include<string.h>
#define N 10
void  toUpperCase( char  str[ ]);

void main(){
    char str[N];
    printf("请输入一个字符串:");
    gets(str);
    toUpperCase(str);
    printf("交换后的字符串为:");
    puts(str);
   

}
void  toUpperCase( char  str[ ]){
    int i;
    for(i=0;;i++){
        if(str[i]!=‘\0‘)
            str[i]=str[i]-32;
        else
            break;
    }
}
*/

以上是关于题库的操作题(未完)的主要内容,如果未能解决你的问题,请参考以下文章

网络流 24题 试题库问题

OCP新题库052最新题库解析-第6题

OCP新题库052最新题库解析-第5题

[网络流24题]试题库问题

OCP2018最新题库,052新题库及答案整理-25题

全国计算机等级考试题库二级C操作题100套(第89套)