作业多多,帮一下

2024-05-10

1. 作业多多,帮一下

TFTTF

作业多多,帮一下

2. 我想用另一个手机连上我的网络应该在哪里设置啊,请大家指点一下吧

设置-wifi-选取自己的网络名字,有密码就输入密码,就连接到了,下次回到家也不用重连,会自动连接的

3. 帮我做一下,必采纳 实在是作业太多了,帮帮忙????

 

帮我做一下,必采纳 实在是作业太多了,帮帮忙????

4. 明天交作业帮我一下行吗?

 

5. 假期作业一道题,不会,拜托哪位高人指点一下。

边角边,,三角形BAD和三角形CBE,全等,AE=BE,AB=BC,角EBC=角DAB=90度

假期作业一道题,不会,拜托哪位高人指点一下。

6. 设计一段代码!纠结了很久,要教的作业,高手指点了!

/*供你参考*/
#include 
#include 

typedef struct tagStudent{
    int no;
    char name[20];
    float score;
} Student, *PStudent; 

typedef struct tagLinkNode{
    PStudent pStudent; 
    struct tagLinkNode *next; 
} LinkNode, *PLinkNode; 

void clearNode(PLinkNode node)
{
    if (node){
        if (node->next) clearNode(node->next);
        if (node->pStudent) free(node->pStudent);
        free(node);
    }

    return; 
}

int main(int argc, char *argv[])
{
    LinkNode head;
    PLinkNode pNode = &head; 
    int i; 
    for (i=0; i<3; i++)
    {
        PStudent pStu1 = (PStudent)malloc(sizeof(Student));
        printf("【学生%d】学号:", i+1); 
        scanf("%d", &pStu1->no);
        printf("【学生%d】姓名:", i+1); 
        scanf("%s", pStu1->name);
        printf("【学生%d】成绩:", i+1); 
        scanf("%f", &pStu1->score);

        PLinkNode newNode = (PLinkNode)malloc(sizeof(LinkNode));
        newNode->next = NULL; 
        newNode->pStudent = pStu1; 
        pNode->next = newNode; 

        pNode = newNode; 
    }
    
    /*打印链表*/
    pNode = &head; 
    while(pNode->next){
        pNode = pNode->next; 
        printf("%d, %s, %f\n", pNode->pStudent->no, pNode->pStudent->name, pNode->pStudent->score);
    }
    
    /*退出前,删除链表--动态申请的内存,由于我们使用的单链表,所以用递归来删除*/
    if (head.next) clearNode(head.next);

    system("PAUSE"); 
    return 0;
}

7. 帮我写一下作业可以吗?

第一次运走4×2/5=1.6吨,第二次运走1.6-2/5=1.2吨,两次共运走2.8吨。

帮我写一下作业可以吗?

8. 检查一下作业好吗

最新文章
热门文章
推荐阅读