IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> C++知识库 -> C语言实现 统计字符串长度、 统计数字字符个数、复制字符串、连接两个字符串、删除数字字符、 比较两个字符串 -> 正文阅读

[C++知识库]C语言实现 统计字符串长度、 统计数字字符个数、复制字符串、连接两个字符串、删除数字字符、 比较两个字符串

统计字符数组长度
#include <stdio.h>
void main(){
    char str[100];
    gets(str);

    int count = 0, i = 0;
    while (str[i++]){
        count++;
    }
    printf("%d", count);
}

#include <stdio.h>
void main(){
    char str[100];
    gets(str);

    int count = 0;
    char *strp = str;
    while (*strp++){
        count++;
    }

    printf("%d", count);
}

#include <stdio.h>
int countStringLongth(char str[]){
    char *strp = str;
    int count = 0;
    while (*strp++){
        count++;
    }
    return count;
}
void main(){
    char str[100];
    gets(str);
    printf("%d", countStringLongth(str));
}

统计数字字符个数
#include <stdio.h>
void main(){
    char str[100];
    gets(str);
    int count = 0, i = 0;
    while (str[i]){
        if(str[i]>='0'&&str[i]<='9'){
            count++;
        }
        i++;
    }
    printf("%d", count);
}

#include <stdio.h>
void main(){
    char str[100];
    gets(str);
    int count = 0;
    char *strp = str;
    while (*strp){
        if((*strp>='0')&&(*strp<='9')){
            count++;
        }
        strp++;
    }
    printf("%d", count);
}

#include <stdio.h>
int countNum(char str[]){
    int count = 0;
    char *strp = str;
    while (*strp){
        if((*strp>='0')&&(*strp<='9')){
            count++;
        }
        strp++;
    }
    return count;
}
void main(){
    char str[100];
    gets(str);
    printf("%d", countNum(str));
}

复制字符串
#include <stdio.h>
void main(){
    char str1[100], str2[100];
    gets(str1);
    gets(str2);
    int i = 0, j = 0;
    while (str2[j]){
        str1[i] = str2[j];
        i++;
        j++;
    }
    str1[i] = '\0';
    puts(str1);
}

#include <stdio.h>
void main(){
    char str1[100], str2[100];
    gets(str1);
    gets(str2);
    char *str1p = str1, *str2p = str2;
    while (*str2p){
        *str1p = *str2p;
        str1p++;
        str2p++;
    }
    *str1p = '\0';
    puts(str1);
}

#include <stdio.h>
void strcpy(char str1[], char str2[]){
    char *str1p = str1, *str2p = str2;
    while (*str2p){
        *str1p = *str2p;
        str1p++;
        str2p++;
    }
    *str1p = '\0';
}
void main(){
    char str1[100], str2[100];
    gets(str1);
    gets(str2);
    strcpy(str1, str2);
    puts(str1);
}

连接两个字符串
#include <stdio.h>
void main(){
    char str1[100], str2[100];
    gets(str1);
    gets(str2);
    char *str1p = str1, *str2p = str2;
    while (*str1p){
        str1p++;
    }
    while (*str2p){
        *str1p = *str2p;
        str1p++;
        str2p++;
    }
    *str1p = '\0';
    puts(str1);
}

#include <stdio.h>
void main(){
    char str1[100], str2[100];
    gets(str1);
    gets(str2);
    int i = 0, j = 0;
    while (str1[i]){
        i++;
    }
    while (str2[j]){
        str1[i] = str2[j];
        i++;
        j++;
    }
    puts(str1);
}

#include <stdio.h>
void strcat(char str1[], char str2[]){
    char *str1p = str1, *str2p = str2;
    while (*str1){
        str1++;
    }
    while (*str2){
        *str1 = *str2;
        str1++;
        str2++;
    }
    *str1 = '\0';
}
void main(){
    char str1[100], str2[100];
    gets(str1);
    gets(str2);
    strcat(str1, str2);
    puts(str1);
}

删除数字字符
#include <stdio.h>
void main(){
    char str[100], strNew[100];
    gets(str);
    int i = 0, j = 0;
    while (str[i]){
        if(!((str[i]>='0')&&(str[i]<='9'))){
            strNew[j] = str[i];
            i++;
            j++;
        } else{
            i++;
        }
    }
    strNew[j] = '\0';
    puts(strNew);
}

#include <stdio.h>
void main(){
    char str[100], strNew[100];
    gets(str);
    char *strp = str, *strNewp = strNew;
    while (*strp){
        if(!((*strp>='0')&&(*strp<='9'))){
            *strNewp = *strp;
            strp++;
            strNewp++;
        } else{
            strp++;
        }
    }
    *strNewp = '\0';
    puts(strNew);
}

#include <stdio.h>
void deleteNum(char str[]){
    char *strp = str, *strp1 = str;
    while (*strp){
        if(!((*strp>='0')&&(*strp<='9'))){
            *strp1 = *strp;
            strp++;
            strp1++;
        } else{
            strp++;
        }
    }
    *strp1 = '\0';
}
void main(){
    char str[100];
    gets(str);
    deleteNum(str);
    puts(str);
}

比较两个字符串
#include <stdio.h>
void main(){
    char str1[100], str2[100];
    gets(str1);
    gets(str2);
    int result = 0, i = 0, j = 0;
    while ((str1[i] != '\0')||(str2[i] != '\0')){
        if(str1[i] != str2[j]){
            result = str1[i] - str2[j];
            break;
        } else{
            i++;
            j++;
        }
    }
    printf("%d\n", result);
}

#include <stdio.h>
void main(){
    char str1[100], str2[100];
    gets(str1);
    gets(str2);
    char *str1p = str1, *str2p = str2;
    int result = 0;
    while ((*str1p != '\0')||(*str2p != '\0')){
        if(*str1p != *str2p){
            result = *str1p - *str2p;
            break;
        } else{
            str1p++;
            str2p++;
        }
    }
    printf("%d\n", result);
}

#include <stdio.h>
int strcmp(char str1[], char str2[]){
    char *str1p = str1, *str2p = str2;
    int result = 0;
    while ((*str1p != '\0')||(*str2p != '\0')){
        if(*str1p != *str2p){
            result = *str1p - *str2p;
            break;
        } else{
            str1p++;
            str2p++;
        }
    }
    return result;
}
void main(){
    char str1[100], str2[100];
    gets(str1);
    gets(str2);
    printf("%d\n", strcmp(str1, str2));
}
  C++知识库 最新文章
【C++】友元、嵌套类、异常、RTTI、类型转换
通讯录的思路与实现(C语言)
C++PrimerPlus 第七章 函数-C++的编程模块(
Problem C: 算法9-9~9-12:平衡二叉树的基本
MSVC C++ UTF-8编程
C++进阶 多态原理
简单string类c++实现
我的年度总结
【C语言】以深厚地基筑伟岸高楼-基础篇(六
c语言常见错误合集
上一篇文章      下一篇文章      查看所有文章
加:2022-04-22 18:17:37  更:2022-04-22 18:18:59 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/23 23:48:24-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码