PTA | C文件操作相关题目 2-1 在C语言中,读写操作时会进行自动转换的文件是 A.二进制文件和文本文件都不需要转换 B.二进制文件 C.文本文件 D.二进制文件和文本文件都需要转换 GPT 在C语言中,涉及到文件读写时的自动转换主要发生在操作文本文件时。当你在C语言中使用标准的文件操作函数(如 fopen, fread, fwrite, fprintf, fscanf 等)来操作文本文件时,会进行某些自动转换。最常见的是 2023-12-27
ACM | Assignments 6 7-2 非常可乐 大家一定觉的运动以后喝可乐是一件很惬意的事情,但是seeyou却不这么认为。因为每次当seeyou买了可乐以后,阿牛就要求和seeyou一起分享这一瓶可乐,而且一定要喝的和seeyou一样多。但seeyou的手中只有两个杯子,它们的容量分别是N 毫升和M 毫升 可乐的体积为S (S<101)毫升 (正好装满一瓶) ,它们三个之间可以相互倒可乐 (都是没有刻度的,且 S==N 2023-12-25
PTA | 结构体链表相关题目 2-1 对于以下结构定义,p->str++中的++加在( )。 struct { int len; char * str; } *p; 指针str上 指针p上 str指针指向的内容上 语法错误 GPT 在这个结构体定义中,p 是一个指向该结构体的指针。结构体包含一个整型成员 len 和一个字符指针 str。当执行 p->str++ 时,这个操作会影响到: C. str指针指向的内容 2023-12-19
PTA | 指针相关题目及解析2 1-1 设有下列语句,则( )是对a数组元素的不正确引用,其中0≤i<10,int a[10]={0,1,2,3,4,5,6,7,8,9}, * p=a; A.p[i] B.p=a[2] C.*(p+3) D.*(a+i) ChatGPT 在这个问题中,我们需要识别哪个选项是对数组 a 的元素进行了不正确的引用。首先,让我们逐一分析每个选项: A. p[i] - 这是正确 2023-12-18
ACM | Inner PK 7 L1-1 最好的文档 有一位软件工程师说过一句很有道理的话:“Good code is its own best documentation.”(好代码本身就是最好的文档)。本题就请你直接在屏幕上输出这句话。 输入格式: 本题没有输入。 输出格式: 在一行中输出 Good code is its own best documentation.。 输入样例: 无 ## 输出样例: Good code 2023-12-17
HDUOJ | 1023 Train Problem II Train Problem II Problem Description As we all know the Train Problem I, the boss of the Ignatius Train Station want to know if all the trains come in strict-increasing order, how many orders that all 2023-12-16
HDUOJ | 1022 Train Problem I Train Problem I Problem Description As the new term comes, the Ignatius Train Station is very busy nowadays. A lot of student want to get back to school by train(because the trains in the Ignatius Tra 2023-12-16
HDUOJ | 1017 A Mathematical Curiosity A Mathematical Curiosity Problem Description Given two integers n and m, count the number of pairs of integers (a,b) such that 0 < a < b < n and (a2+b2 +m)/(ab) is an integer. This problem co 2023-12-14
HDUOJ | 1007 QuoitDesign Quoit Design Problem Description Have you ever played quoit in a playground? Quoit is a game in which flat rings are pitched at some toys, with all the toys encircled awarded. In the field of Cybergro 2023-12-13
PTA | 指针相关题目及解析 1-1 若有定义:int *p[3]; 则以下叙述中正确的是( )。 A.定义了一个基类型为 int 的指针变量 p,该变量具有3个指针 B.定义了一个指针数组 p,该数组含有3个元素,每个元素都是基类型为 int 的指针 C.定义了一个名为 *p 的整型数组,该数组含有3个 int 类型元素 D.定义了一个可指向一维数组的指针变量 p ,所指一维数组应具有3个 int 类型元素 GPT 在 C 2023-12-11