第七周. 小灰灰 2021-12-21 04:13 329阅读 0赞 ## 第六周作业 ## <table> <thead> <tr> <th>这个作业属于那个课程</th> <th>C语言程序设计II</th> </tr> </thead> <tbody> <tr> <td>这个作业要求在哪里</td> <td><a href="https://edu.cnblogs.com/campus/zswxy/software-engineering-class1-2018/homework/2936" rel="nofollow">https://edu.cnblogs.com/campus/zswxy/software-engineering-class1-2018/homework/2936</a></td> </tr> <tr> <td>我在这个课程的目标是</td> <td>掌握数组名作为函数参数的用法,理解指针、数组和地址之间的关系,理解指针和数组可以实现相同的操作</td> </tr> <tr> <td>这个作业在那个具体方面帮助我实现目标</td> <td>让我掌握数组名作为函数参数的用法,理解指针、数组和地址之间的关系</td> </tr> <tr> <td>参考文献</td> <td>c语言程序设计第三版</td> </tr> </tbody> </table> ### 6-2 每个单词的最后一个字母改成大写 ### 函数fun的功能是:将p所指字符串中每个单词的最后一个字母改成大写。(这里的“单词”是指由空格隔开的字符串)。 函数接口定义: void fun( char \*p ); 其中 p 是用户传入的参数。函数将 p所指字符串中每个单词的最后一个字母改成大写。 裁判测试程序样例: #include <stdio.h> void fun( char *p ); int main() { char chrstr[64]; int d ; gets(chrstr); d=strlen(chrstr) ; chrstr[d] = ' ' ; chrstr[d+1] = 0 ; fun(chrstr); printf("\nAfter changing: %s\n", chrstr); return 0; } /* 请在这里填写答案 */ 输入样例: my friend is happy 输出样例: After changing: mY frienD iS happY ## 代码 ## void fun( char *p ){ int i; for(i=0;*(p+i)!='\0';i++){ if(*(p+i+1)==' ') *(p+i)=*(p+i)-'a'+'A'; } } ### 流程图 ### ![1581818-20190412193056602-495877201.png][] ### 截图 ### ![1581818-20190412193119308-547158114.png][] ### 7-2 自动售货机 ### 如图所示的简易自动售货机,物品架1、2上共有10样商品,按顺序进行编号分别为1-10,标有价格与名称,一个编号对应一个可操作按钮,供选择商品使用。如果物架上的商品被用户买走,储物柜中会自动取出商品送到物架上,保证物品架上一定会有商品。用户可以一次投入较多钱币,并可以选择多样商品,售货机可以一次性将商品输出并找零钱。 用户购买商品的操作方法是: (1)从“钱币入口”放入钱币,依次放入多个硬币或纸币。钱币可支持1元(纸币、硬币)、2元(纸币)、5元(纸币)、10元(纸币),放入钱币时,控制器会先对钱币进行检验识别出币值,并统计币值总额,显示在控制器显示屏中,提示用户确认钱币放入完毕; (2)用户确认钱币放入完毕,便可选择商品,只要用手指按对应商品外面的编号按钮即可。每选中一样商品,售货机控制器会判断钱币是否足够购买,如果钱币足够,自动根据编号将物品进行计数和计算所需钱币值,并提示余额。如果钱币不足,控制器则提示“Insufficient money”。用户可以取消购买,将会把所有放入钱币退回给用户。 输入格式: 先输入钱币值序列,以-1作为结束,再依次输入多个购买商品编号,以-1结束。 输出格式: 输出钱币总额与找回零钱,以及所购买商品名称及数量。 输入样例: 1 1 2 2 5 5 10 10 -1 1 2 3 5 1 6 9 10 -1 输出样例: Total:36yuan,change:19yuan Table-water:2;Table-water:1;Table-water:1;Milk:1;Beer:1;Oolong-Tea:1;Green-Tea:1; ### 代码 ### #include"stdio.h" struct goods { int num; char n[20]; int price; int amount; }; int main() { struct goods good[10]= { {1,"Table-water",1,0}, {2,"Table-water",1,0}, {3,"Table-water",1,0}, {4,"Coca-Cola",2,0}, {5,"Milk",2,0}, {6,"Beer",3,0}, {7,"Orange-Juice",3,0}, {8,"Sprite",3,0}, {9,"Oolong-Tea",4,0}, {10,"Green-Tea",4,0} }; int sum=0,num,change,total=0,money=0,i=0; while(1) { scanf("%d",&money); if(money==-1) { break; } sum=sum+money; } while(1) { scanf("%d",&num); if(num==-1) { break; } switch(num) { case 1: { total=total+good[0].price; good[0].amount=good[0].amount+1; break; } case 2: { total=total+good[1].price; good[1].amount=good[1].amount+1; break; } case 3: { total=total+good[2].price; good[2].amount=good[2].amount+1; break; } case 4: { total=total+good[3].price; good[3].amount=good[3].amount+1; break; } case 5: { total=total+good[4].price; good[4].amount=good[4].amount+1; break; } case 6: { total=total+good[5].price; good[5].amount=good[5].amount+1; break; } case 7: { total=total+good[6].price; good[6].amount=good[6].amount+1; break; } case 8: { total=total+good[7].price; good[7].amount=good[7].amount+1; break; } case 9: { total=total+good[8].price; good[8].amount=good[8].amount+1; break; } case 10: { total=total+good[9].price; good[9].amount=good[9].amount+1; break; } } } if(total>sum) { printf("Insufficient money"); } else { change=sum-total; printf("Total:%dyuan,change:%dyuan\n",sum,change); for(i=0;i<10;i++) { if(good[i].amount!=0) { printf("%s:%d;",good[i].name,good[i].amount); } } } } ### 流程图 ### ![1581818-20190412193140994-358524698.png][] #### 截图 #### ![1581818-20190412193147215-1423051779.png][] ### 7-1 使用函数删除字符串中的字符 ### 输入一个正整数 repeat (0<repeat<10),做 repeat 次下列运算: 输入一个字符串 str,再输入一个字符 c,将字符串 str 中出现的所有字符 c 删除。 要求定义并调用函数delchar(str,c), 它的功能是将字符串 str 中出现的所有 c 字符删除,函数形参str的类型是字符指针,形参c的类型是char,函数类型是void。 输入输出示例:括号内为说明,无需输入输出 输入样例: 3 (repeat=3) happy new year (字符串"happy new year") a (待删除的字符'a') bee (字符串"bee") e (待删除的字符'e') 111211 (字符串"111211") 1 (待删除的字符'1') 输出样例: result: hppy new yer (字符串"happy new year"中的字符'a'都被删除) result: b (字符串"bee"中的字符'e'都被删除) result: 2 (字符串"111211"中的字符'1'都被删除) ### 代码 ### #include<stdio.h> void delchar (char *s,char c); int main () { char a[20]; char c,b,d,e; int i,repeat; scanf("%d",&repeat); scanf("%c",&d); for(i=1;i<=repeat;i++){ gets(a); scanf("%c",&b); scanf("%c",&e); printf("result: "); delchar(a,b); } return 0; } void delchar (char *s,char b) { int d,i=0; for(;*s!='\0';s++){ if(*s!=b) putchar(*s); } printf("\n"); } ### 流程图 ### ![1581818-20190412193158855-698416564.png][] ### 截图 ### ![1581818-20190412193213511-1043404700.png][] ### 学习进度条 ### <table> <thead> <tr> <th>周/日期</th> <th>这周所花时间</th> <th>代码行</th> <th>知识点简介</th> <th>困惑问题</th> </tr> </thead> <tbody> <tr> <td>第七周</td> <td>6小时</td> <td>行</td> <td>指针、数组和地址之间的关系</td> <td>无</td> </tr> </tbody> </table> ### 学习感悟 ### \*\*基础不牢,地动山摇![1581818-20190412193325587-1285660149.png][] \*\* ### 结对编程总结 ### 那里不会问哪里![1581818-20190412192432286-1220316070.png][] 转载于:https://www.cnblogs.com/shqn/p/10698082.html [1581818-20190412193056602-495877201.png]: /images/20211221/9a7a28b4e13a4ab5b753e6e9f91de204.png [1581818-20190412193119308-547158114.png]: /images/20211221/97a343c7ae8f4f56bd5a75da6675bc05.png [1581818-20190412193140994-358524698.png]: /images/20211221/0614c6e0b11d45418446774d6a6c0699.png [1581818-20190412193147215-1423051779.png]: /images/20211221/003d9495295849d8a54800ec58660825.png [1581818-20190412193158855-698416564.png]: /images/20211221/4b8c362fd8d44c8a9b1a9bf2cab4f10f.png [1581818-20190412193213511-1043404700.png]: /images/20211221/53d0bd37f219444c88ccc844175dc6df.png [1581818-20190412193325587-1285660149.png]: /images/20211221/4708f54ab2af49b28709d24032ce0417.png [1581818-20190412192432286-1220316070.png]: /images/20211221/7e582203a8a5460fa760ac6ad03b5c4d.png
相关 第七周:水仙花数。 问题:求出所有的水仙花数。 代码: include <stdio.h> int main() { int a,b,c; 曾经终败给现在/ 2022年07月16日 09:13/ 0 赞/ 135 阅读
相关 第七周 任务三 / 实验内容:【任务3】阅读P314的例10.1(电子版的在平台上见txt文件)。该例实现了一个复数类,但是美中不足的是,复数类的实部和虚部都固定是doub 喜欢ヅ旅行/ 2022年06月13日 08:51/ 0 赞/ 222 阅读
相关 第七周 任务二 / 实验内容:利用成员函数、友元函数和一般函数,实现三个版本的求两点间距离的函数 程序的版权和版本声明部分 Copyrigh Bertha 。/ 2022年06月13日 08:48/ 0 赞/ 202 阅读
相关 第七周测试 7546 统计数字字符个数 http://noi.openjudge.cn/ch0107/01/ \ 7804 找第一个只出现一次的字符 http://noi.openj 我不是女神ヾ/ 2022年05月19日 02:20/ 0 赞/ 258 阅读
相关 第七周编程总结 <table> <tbody> <tr> <td>这个作业属于哪里</td> <td>c语言程序与设计</td> </tr> <tr> ゝ一纸荒年。/ 2022年01月12日 12:17/ 0 赞/ 262 阅读
相关 第七周作业 本周作业头 <table> <thead> <tr> <th style="text-align:left;">这个作业属于那个课程</th> ╰半橙微兮°/ 2022年01月07日 04:53/ 0 赞/ 332 阅读
相关 第七周. 第六周作业 <table> <thead> <tr> <th>这个作业属于那个课程</th> <th>C语言程序设计II</th> </t 小灰灰/ 2021年12月21日 04:13/ 0 赞/ 330 阅读
相关 第七周作业 <table> <thead> <tr> <th>这个作业属于那个课程</th> <th>C语言程序设计II</th> </tr> </th 超、凢脫俗/ 2021年12月14日 14:17/ 0 赞/ 513 阅读
相关 第十七周 一.学习 1.这一周基本上进入复习周了,大家都在备考当中,而我感觉这一周的效率不是很高,没有复习到多少东西,进度和16周的没有什么区别,所以自己内心还是有点小慌张 清疚/ 2021年11月10日 23:58/ 0 赞/ 312 阅读
还没有评论,来说两句吧...