C语言基础(十六)

2024-08-25 10:44
文章标签 语言 基础 十六

本文主要是介绍C语言基础(十六),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

C语言中的结构体(Struct)是一种用户自定义的数据类型,允许将不同类型的数据项组合成一个单一的类型:

测试代码1:

#include "date.h"
#include <stdio.h>  
#include <string.h>  // 定义衣服结构体  
struct Clothes {  char name[50]; // 衣服名称  char color[20]; // 衣服颜色  int size; // 尺码  float price; // 价格  
};  int main() {  int time = getTime();// 创建衣服结构体数组 struct Clothes clothes[3];  // 使用"."访问并设置每件衣服的信息  strcpy(clothes[0].name, "衬衫");  strcpy(clothes[0].color, "白色");  clothes[0].size = 39;  clothes[0].price = 59.99;  strcpy(clothes[1].name, "牛仔裤");  strcpy(clothes[1].color, "蓝色");  clothes[1].size = 32;  clothes[1].price = 99.99;  strcpy(clothes[2].name, "外套");  strcpy(clothes[2].color, "黑色");  clothes[2].size = 42;  clothes[2].price = 159.99;  // 遍历数组并打印每件衣服的信息  for (int i = 0; i < 3; i++) {  printf("衣服名称: %s\n", clothes[i].name);  printf("衣服颜色: %s\n", clothes[i].color);  printf("尺码: %d\n", clothes[i].size);  printf("价格: %.2f\n\n", clothes[i].price);  }  return 0;  
}

运行结果如下:

 

测试代码2:

#include"date.h" 
#include <stdio.h>  
#include <string.h>  // 定义衣服结构体  
struct Clothes {  char name[50]; // 衣服名称  char color[20]; // 衣服颜色  int size; // 尺码(假设用整数表示不同尺码)  float price; // 价格  
};  int main() {  int time = getTime();// 创建衣服结构体变量  struct Clothes shirt;  // 使用"."访问并设置shirt的成员  strcpy(shirt.name, "衬衫");  strcpy(shirt.color, "白色");  shirt.size = 39;  shirt.price = 59.99;  // 打印shirt的信息  printf("衣服名称: %s\n", shirt.name);  printf("衣服颜色: %s\n", shirt.color);  printf("尺码: %d\n", shirt.size);  printf("价格: %.2f\n", shirt.price);  // 定义一个指向衣服的指针  struct Clothes *ptr = &shirt;  // 使用"->"访问并打印ptr指向的衣服的信息  printf("通过指针访问的衣服名称: %s\n", ptr->name);  printf("通过指针访问的衣服颜色: %s\n", ptr->color);  printf("通过指针访问的尺码: %d\n", ptr->size);  printf("通过指针访问的价格: %.2f\n", ptr->price);  return 0;  
}

运行结果如下:

 

测试代码3:

#include "date.h" 
#include <stdio.h>  
#include <string.h>  
#include <stdbool.h>  
#include <limits.h> 
// 定义运动员结构体 
typedef struct {  int id;  char name[50];  float height;  float weight;  
} Athlete;  bool read_integer(const char *prompt, int *value) {  while (true) {  printf("%s", prompt);  if (scanf("%d", value) == 1) {  // 成功读取一个整数  return true;  }  // 清除输入缓冲区中的错误输入  int c;  while ((c = getchar()) != EOF && c != '\n');  // 提示重新输入  printf("输入无效,请输入一个整数:");  }  
}  bool read_float(const char *prompt, float *value) {  while (true) {  printf("%s", prompt);  if (scanf("%f", value) == 1) {  // 成功读取一个浮点数  return true;  }  // 清除输入缓冲区中的错误输入  int c;  while ((c = getchar()) != EOF && c != '\n');  // 提示重新输入  printf("输入无效,请输入一个浮点数:");  }  
}  bool read_string(const char *prompt, char *buffer, size_t bufsize) {  printf("%s", prompt);  if (fgets(buffer, bufsize, stdin) == NULL) {  // fgets失败return false;  }  // 去除字符串末尾的换行符(如果有的话)  size_t len = strlen(buffer);  if (len > 0 && buffer[len - 1] == '\n') {  buffer[len - 1] = '\0';  }  // fgets总是读取一行  // 如果需要验证字符串内容(比如非空),可以在这里实现。 return true;  
}  int main() {  int time = getTime();Athlete athlete;  int n;  if (!read_integer("请输入运动员数量: ", &n) || n <= 0) {  fprintf(stderr, "无效的运动员数量。\n");  return 1;  }  for (int i = 0; i < n; i++) {  printf("请输入第 %d 个运动员的信息:\n", i + 1);  if (!read_integer("  ID: ", &athlete.id)) {  fprintf(stderr, "无法读取运动员ID。\n");  continue; // 或者退出循环/程序  }  if (!read_float("  身高(米): ", &athlete.height) || athlete.height < 0) {  fprintf(stderr, "无效的身高值。\n");  continue;  }  if (!read_float("  体重(公斤): ", &athlete.weight) || athlete.weight < 0) {  fprintf(stderr, "无效的体重值。\n");  continue;  }  if (!read_string("  姓名: ", athlete.name, sizeof(athlete.name))) {  fprintf(stderr, "无法读取运动员姓名。\n");  continue;  }  // 打印运动员信息或将其添加到数据结构中  printf("运动员ID: %d, 姓名: %s, 身高: %.2f米, 体重: %.2f公斤\n",  athlete.id, athlete.name, athlete.height, athlete.weight);  }  return 0;  
}

运行结果如下:

 

 

 

这篇关于C语言基础(十六)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1105339

相关文章

零基础学习Redis(10) -- zset类型命令使用

zset是有序集合,内部除了存储元素外,还会存储一个score,存储在zset中的元素会按照score的大小升序排列,不同元素的score可以重复,score相同的元素会按照元素的字典序排列。 1. zset常用命令 1.1 zadd  zadd key [NX | XX] [GT | LT]   [CH] [INCR] score member [score member ...]

科研绘图系列:R语言扩展物种堆积图(Extended Stacked Barplot)

介绍 R语言的扩展物种堆积图是一种数据可视化工具,它不仅展示了物种的堆积结果,还整合了不同样本分组之间的差异性分析结果。这种图形表示方法能够直观地比较不同物种在各个分组中的显著性差异,为研究者提供了一种有效的数据解读方式。 加载R包 knitr::opts_chunk$set(warning = F, message = F)library(tidyverse)library(phyl

透彻!驯服大型语言模型(LLMs)的五种方法,及具体方法选择思路

引言 随着时间的发展,大型语言模型不再停留在演示阶段而是逐步面向生产系统的应用,随着人们期望的不断增加,目标也发生了巨大的变化。在短短的几个月的时间里,人们对大模型的认识已经从对其zero-shot能力感到惊讶,转变为考虑改进模型质量、提高模型可用性。 「大语言模型(LLMs)其实就是利用高容量的模型架构(例如Transformer)对海量的、多种多样的数据分布进行建模得到,它包含了大量的先验

【Linux 从基础到进阶】Ansible自动化运维工具使用

Ansible自动化运维工具使用 Ansible 是一款开源的自动化运维工具,采用无代理架构(agentless),基于 SSH 连接进行管理,具有简单易用、灵活强大、可扩展性高等特点。它广泛用于服务器管理、应用部署、配置管理等任务。本文将介绍 Ansible 的安装、基本使用方法及一些实际运维场景中的应用,旨在帮助运维人员快速上手并熟练运用 Ansible。 1. Ansible的核心概念

AI基础 L9 Local Search II 局部搜索

Local Beam search 对于当前的所有k个状态,生成它们的所有可能后继状态。 检查生成的后继状态中是否有任何状态是解决方案。 如果所有后继状态都不是解决方案,则从所有后继状态中选择k个最佳状态。 当达到预设的迭代次数或满足某个终止条件时,算法停止。 — Choose k successors randomly, biased towards good ones — Close

C语言 | Leetcode C语言题解之第393题UTF-8编码验证

题目: 题解: static const int MASK1 = 1 << 7;static const int MASK2 = (1 << 7) + (1 << 6);bool isValid(int num) {return (num & MASK2) == MASK1;}int getBytes(int num) {if ((num & MASK1) == 0) {return

MiniGPT-3D, 首个高效的3D点云大语言模型,仅需一张RTX3090显卡,训练一天时间,已开源

项目主页:https://tangyuan96.github.io/minigpt_3d_project_page/ 代码:https://github.com/TangYuan96/MiniGPT-3D 论文:https://arxiv.org/pdf/2405.01413 MiniGPT-3D在多个任务上取得了SoTA,被ACM MM2024接收,只拥有47.8M的可训练参数,在一张RTX

如何确定 Go 语言中 HTTP 连接池的最佳参数?

确定 Go 语言中 HTTP 连接池的最佳参数可以通过以下几种方式: 一、分析应用场景和需求 并发请求量: 确定应用程序在特定时间段内可能同时发起的 HTTP 请求数量。如果并发请求量很高,需要设置较大的连接池参数以满足需求。例如,对于一个高并发的 Web 服务,可能同时有数百个请求在处理,此时需要较大的连接池大小。可以通过压力测试工具模拟高并发场景,观察系统在不同并发请求下的性能表现,从而

C语言:柔性数组

数组定义 柔性数组 err int arr[0] = {0}; // ERROR 柔性数组 // 常见struct Test{int len;char arr[1024];} // 柔性数组struct Test{int len;char arr[0];}struct Test *t;t = malloc(sizeof(Test) + 11);strcpy(t->arr,

音视频入门基础:WAV专题(10)——FFmpeg源码中计算WAV音频文件每个packet的pts、dts的实现

一、引言 从文章《音视频入门基础:WAV专题(6)——通过FFprobe显示WAV音频文件每个数据包的信息》中我们可以知道,通过FFprobe命令可以打印WAV音频文件每个packet(也称为数据包或多媒体包)的信息,这些信息包含该packet的pts、dts: 打印出来的“pts”实际是AVPacket结构体中的成员变量pts,是以AVStream->time_base为单位的显