#include <stdio.h>
// int main()
// {
// unsigned char a = 200;
// unsigned char b = 100;
// unsigned char c = 0;
// c = a+b;
// printf("%d %d", a+b, c);
// return 0;
// }
......................
阅读全部 | 2022年4月15日 21:02
#include <stdio.h>
int main()
{
int money = 0;
scanf("%d", &money);
int total = money;
int empty = money;
while (empty >=2)
{
total += empty/2;
......................
阅读全部 | 2022年4月15日 17:42
#include<stdio.h>
void test(int arr[3][5]){}
void test(int arr[][]){}//错误,必须要有列
void test(int *arr){}//传入的是第一行的地址,使用接收不行
void test(int *arr[5]){}//指针数组,不行x
void test(int (*arr)[5]){}//数组名指向5个元素的数组
void test(int **arr){}//x 不行,不是二级指针
//传过去的是什么放什么基本上,可以数组,也可以是指针
int main()
......................
阅读全部 | 2022年4月15日 15:31
#include <stdio.h>
// int main()
// {
// int a = 10;
// int* pa = &a;
// char ch = 'w';
// char* pch = &ch;
// double* d[5];
// double* (*pd)[5] = &d; //pd 是一个数组值
......................
阅读全部 | 2022年4月15日 15:24
#include <stdio.h>
int main()
{
int a = 10;
int* pa = &a;
char ch = 'w';
char* pch = &ch;
double* d[5];
double* (*pd)[5] = &d; //pd 是一个数组值
......................
阅读全部 | 2022年4月15日 11:05
#include <stdio.h>
int main()
{
int a[] = {1,2,3,4,5};
int b[] = {2,3,5,6,7};
int c[] = {1,4,5,6,8};
int* arr[] = {a, b, c};
int i = 0;
for (i = 0; i < 3; i++)
{
......................
阅读全部 | 2022年4月15日 10:39