#include <stdio.h>
/*
函数指针、函数指针数组
*/
int add(int x, int y)
{
return x+y;
}
int sub(int x, int y)
{
......................
阅读全部
|
nn154189906
贴于 2022年4月16日 16:33
hide
bbsi
#include <stdio.h>
// int main() //猜杀手
// {
// char k = 0;
// for (k='A'; k<='D'; k++)
// {
// if((k != 'A')+(k =='C')+(k=='D')+(k!='D')==3)
// {
// printf("%c", k);
// }
// }
......................
阅读全部
|
nn154189906
贴于 2022年4月16日 16:12
hide
bbsi
#include <stdio.h>
// int main() //猜杀手
// {
// char k = 0;
// for (k='A'; k<='D'; k++)
// {
// if((k != 'A')+(k =='C')+(k=='D')+(k!='D')==3)
// {
// printf("%c", k);
// }
// }
......................
阅读全部
|
nn154189906
贴于 2022年4月15日 21:54
hide
bbsi
#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;
// }
......................
阅读全部
|
nn154189906
贴于 2022年4月15日 21:02
hide
bbsi
#include <stdio.h>
int main()
{
int money = 0;
scanf("%d", &money);
int total = money;
int empty = money;
while (empty >=2)
{
total += empty/2;
......................
阅读全部
|
nn154189906
贴于 2022年4月15日 17:42
hide
bbsi
#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()
......................
阅读全部
|
nn154189906
贴于 2022年4月15日 15:31
hide
bbsi
#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 是一个数组值
......................
阅读全部
|
nn154189906
贴于 2022年4月15日 15:24
hide
bbsi
#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 是一个数组值
......................
阅读全部
|
nn154189906
贴于 2022年4月15日 11:05
hide
bbsi
#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++)
{
......................
阅读全部
|
nn154189906
贴于 2022年4月15日 10:39
hide
bbsi
/**
* 【程序8】
* 题目:输出9*9口诀。
* 程序分析:分行与列考虑,共9行9列,i控制行,j控制列。
*/
#include<stdio.h>
int main() {
int i,j,result;
printf("\n");
for (i=1;i<10;i++) {
......................
阅读全部
|
我想初学编程
贴于 2022年4月12日 14:11
hide
bbsi