如有错误请及时通知我改正,我会第一时间在博客上更新,避免误人子弟
//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() {
//