2015年807程序综合设计答案解析

这是一个关于C语言程序设计的习题解答,包含了数组、字符串操作、函数调用、内存分配、结构体等知识点的示例代码和解析。
摘要由CSDN通过智能技术生成

如有错误请及时通知我改正,我会第一时间在博客上更新,避免误人子弟

//2019 10 06
//coded by user0914 , Visual Studio 2017
#include <stdio.h>


//1. 1
//void main() {
//    int x = 5;
//    printf("%d",x%2);
//}
//2.test1.txt
//3.
//#define N 3
//#define M 4
//int FindMax(int x[ ][M]);//1
//void main() {
//    int x[N][M] = { 1,5,7,4,2,6,4,3,8,2,3,1 };
//    int max;
//    max=FindMax(x);//2
//    printf("The max value is %d\n",max);
//}
//int FindMax(int x[ ][M]) {
//    int i, j;
//    int max;
//    max = x[0][0];
//    for (i = 0; i < N; i++) {
//        for (j = 0; j < M; j++) {
//            if (max < x[i][j]) {
//                max = x[i][j];
//            }
//        }
//    }
//    return max;//3
//}
//4.
//#include <string.h>
//void main() {
//    char a[] = "clanguage";
//    int i, k;
//    k = strlen(a);
//    puts(a);
//    for (i = 0; i < k; i += 2)
//        printf("%c ",a[i]);//
//    printf("\n");
//}
//5.字符型
//6.交换a与b的数据
//7.
//int age(int n) {
//    int c;
//    if (n == 1)c = 10;
//    else c=10+2*(n-1);//
//    return c;
//}
//void main() {
//    int n;
//    scanf("%d",&n);
//    printf("%d\n",age(n));//
//}
//8.4
//void main() {
//    //char *s1 = "12345", *s2 = "1234";
//    //printf("%d\n",strlen(strcpy(s1,s2)));出题有误,常量无法被赋值,会提示违法写入
//    char s1[32] = { "12345" }, s2[32] = { "1234" };
//    strcpy(s1, s2);
//    printf("%s\n", s1);
//    printf("%d\n", strlen(s1));//按照题意应该是说s1被s2赋值过后s1的字符串长度
//}
//9.3
//struct stu_score {
//    char c_language;
//    char math;
//    char english;
//};
//int main() {
//

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值