欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

学习日志

程序员文章站 2024-03-20 19:47:28
...
 姓名: 倪骏                                   日期 9月10日

今日学习任务

安装并属性开发环境,学习指针数字符串组等程序并编译运行。
完成课后作业。

今日任务完成情况

课上完成开发环境的安装,编译成功大部分课上要求的程序,完成课后作业。。。因为C语言基础差 作业参考借鉴完成。

今日开发问题汇总
再次进入修改程序时出现这样的问题 没有得到解决…学习日志
开发环境中删除指令没有记下来。

今日开发收获
今天写了很多代码,熟悉开发环境,老师讲解的很形象,使用画图讲解知识的很好的理解指针数组等知识点。

自我评价
之前没有好好学习C语言,基础很差。。。可是希望以后从事相关工作。。会认真学习此课程。

作业1

#include <stdio.h>
#include <string.h>
int main()
{
    char a[100];
    scanf("%s",a);//  输入字符串
    char * c = a;
    char b[10];
    scanf("%s",b);// 输入子字符串
    char * d = b;
    int n;
    int num = 0;
    n = strlen(d);
    while(strlen(c) > 0)
    {
        if(strncmp(c,d,n) == 0)
        {
            num++;
            c += n;
        }
        else
        {
            c++;
        }
    }
    printf("%d\n",num);
    return 0;
}

作业2

#include <stdio.h>
#include <string.h>
#include <stdlib.h>

int main()
{
    char *str[] = { "I", "am","from","shanghai" ,NULL};
    int i = 0;
    int j = 0;
    int len  = 0;
    char *temp;
    while (str[i] != NULL)
    {
        i++;
        len++;
    }
    for(i = 0, j = len - 1; j  > i; i++,j--)
    {
        temp =*(str+i);
        *(str+i) = *(str+j);
        *(str+j) = temp;
    }
    for(i = 0; i < len; i++)
    {
        printf("%s ", *(str+i));
    }
    printf("\n");

    return 0;
}