码迷,mamicode.com
首页 > 其他好文 > 详细

题库的操作题(未完)

时间:2016-06-11 22:54:31      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:

/*编写函数,实现从键盘上输入一个小写字母,将其转化为大写字母。*/
/*
#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;
    }
}
*/

题库的操作题(未完)

标签:

原文地址:http://www.cnblogs.com/yjh123/p/5576117.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!