C 语言学习-1【基本语法】

1、符号常量

#define 符号常量名 常量

使用符号常量计算圆柱体的体积:

#include <stdio.h>
#define PI 3.1415926

int main() {
    float r, h, volum;
    printf("Please enter the radius: ");
    scanf("%f", &r);
    printf("Please enter the height of the cylinder: ");
    scanf("%f", &h);
    volum = PI * r * r * h;
    printf("The volume of a cylinder is %f\n", volum);
    return 0;
}
  • 运行结果:
    在这里插入图片描述

2、变量的赋值和初始化

输入两个数据,交换他们的值:

#include <stdio.h>

int main() {
    int a, b, t;
    a = 5;
    b = 8;
    printf("a = %d, b = %d\n", a, b);
    printf("Exchange two data: \n");
    t = a;
    a = b;
    b = t;
    printf("a = %d, b = %d\n", a, b);
    return 0;
}
  • 运行结果:
    在这里插入图片描述

3、有符号数和无符号数

输入两个无符号数据,比较他们的大小:

#include <stdio.h>

int main() {
    unsigned int data1, data2;
    printf("Please enter two numbers: ");
    scanf(" %d %d ", &data1, &data2);
    if (data1 > data2) {
        printf("The first number is larger than the second");
    } else {
        printf("The first number is smaller than the second");
    }
    return 0;
}
  • 运行结果:
    在这里插入图片描述

4、字符型数据

大写转小写:

#include <stdio.h>

int main() {
    char c;
    printf("Please enter character: ");
    c = getchar();
    if (c >= 'A' && c <= 'Z') {
        c += 32;
    }
    printf("Output: \n");
    printf("%c\t%d", c, c);
    return 0;
}
  • 运行结果:
    在这里插入图片描述

5、隐式转换

输入半径,计算圆的面积:

#include <stdio.h>

int main() {
    float pi = 3.1416;
    int r, area;
    printf("Please enter radius: ");
    scanf("%d", &r);
    area = pi * r * r;
    printf("Area is: %d", area);
    return 0;
}
  • 运行结果:
    在这里插入图片描述

6、显示转换

输入学生的 3 门课程的成绩,求其平均成绩:

#include <stdio.h>

int main() {
    int mathscore, average_int;
    float chinscore, engscore, average_implicit, average_explicit_int;
    printf("Please enter the results of math, Chinese and English: \n");
    scanf("%d %f %f", &mathscore, &chinscore, &engscore);
    average_implicit = (mathscore + chinscore + engscore) / 3;
    average_explicit_int = (mathscore + (int)(chinscore) + (int)(engscore)) / 3;
    average_int = (int)((mathscore + (int)(chinscore) + (int)(engscore)) / 3);
    printf("%.1f %.1f %d", average_implicit, average_explicit_int, average_int);
    return 0;
}
  • 运行结果:
    在这里插入图片描述

7、算术表达式

从键盘上输入一个三位的整数,分别输出个位、十位、百位上的数字

#include <stdio.h>

int main() {
    int num;
    int ones, tens, hundreds;
    printf("Please enter a number: ");
    scanf("%d", &num);
    hundreds = num / 100;
    tens = (num - hundreds * 100) / 10;
    ones = num % 10;
    printf("The ones place is %d, the tens place is %d, and the hundreds place is %d", ones, tens, hundreds);
    return 0;
}
  • 运行结果:
    在这里插入图片描述

8、关系表达式

输出关系表达式:

#include <stdio.h>

int main() {
    int score = 95, a, b, c;
    a = 70;
    b = 'a' == 'a';
    c = 'a' != 'A';
    printf("a = %d, b = %d, c = %d\n", a, b, c);
    return 0;
}
  • 运算结果:
    在这里插入图片描述

9、逻辑表达式

输入一个年份,判断其是否是闰年:

#include <stdio.h>

int main() {
    int year;
    printf("Please enter the year: ");
    scanf("%d", &year);
    if (year % 4 == 0 && year % 100 != 0 || year % 400 == 0) {
        printf("%d is leao year\n", year);
    } else {
        printf("%d is not leap year\n", year);
    }
    return 0;
}
  • 运算结果:
    在这里插入图片描述

10、赋值表达式

复合赋值运算符在程序中的简单使用:

#include <stdio.h>

void main() {
    int a = 3, b = 8;
    a += a -= a * a;
    b %= 4 - 1;
    b += b *= b -= b *= 3;
    printf("a = %d, b = %d", a, b);
}
  • 运算结果:
    在这里插入图片描述

11、自增、自减运算符

前置加和后置加大的区别:

#include <stdio.h>

int main() {
    int a, b, c;
    a = 7;
    printf("a = %d\n", a);
    b = ++a;
    printf("(1) ++a = %d a = %d\n", b, a);
    a = 7;
    c = a++;
    printf("(2) a++ = %d a = %d\n", c, a);
    return 0;
}
  • 运算结果:
    在这里插入图片描述

12、逗号运算符

逗号表达式的应用:

#include <stdio.h>

void main() {
    int a, b, c, d;
    a = b = 1;
    d = (c = a++, ++b, b++);
    printf("a = %d, b = %d, c = %d, d = %d", a, b, c, d);
}
  • 运算结果:
    在这里插入图片描述

13、条件运算符

求最大值:

#include <stdio.h>

void main() {
    int a, b, max;
    printf("Please enter two numbers: ");
    scanf("%d %d", &a, &b);
    max = a > b ? a : b;
    printf("The maximum value of both %d and %d is: %d", a, b, max);
}
  • 运算结果:
    在这里插入图片描述

14、位运算赋值运算符

取一个整数的二进制形式从右端开始的若干位,并以八进制形式输出:

#include <stdio.h>

int main() {
    unsigned short a, b, c, d;
    int i, k;
    printf("Please enter this integer: ");
    scanf("%o", &a);
    printf("Please enter the start position of the intercept bit (the low position starts from 0) and the end position (the high position): \n");
    scanf("%d %d", &i, &k);
    b = a >> (k - i + 1);
    c = ~(~0 << (k - i + 1));
    d = b & c;
    printf("The integer %o truncated from %d to %d bits is %o\n", a, i, k, d);
    return 0;
}
  • 运算结果
    在这里插入图片描述

15、四则运算计算器

输入两个整数,计算它的和、差、积、商、余数:

#include <stdio.h>

int main() {
    int num1, num2, i = 1, add, sub, mul, div, rem, flag;
    printf("Please enter the first and second numbers: ");
    scanf("%d %d", &num1, &num2);
    add = num1 + num2;
    sub = num1 - num2;
    mul = num1 * num2;
    if (num2 != 0) {
        flag = 1;
        div = (float)num1 / (float)num2;
        rem = num1 % num2;
    } else {
        flag = 0;
    }
    printf("%d.Sum is %d\n", i++, add);
    printf("%d.Difference is %d\n", i++, sub);
    printf("%d.Product is %d\n", i++, mul);
    (flag == 0) ? printf("%d.The input divisor is 0, and the quotient cannot be calculated\n", i++) : printf("%d.Quotient is %d\n", i++, div);
    (flag == 0) ? printf("%d.The input divisor is 0, and the remainder cannot be calculated\n", i++) : printf("%d.Remainder is %d\n", i++, rem);
    return 0;
}
  • 运算结果:
    在这里插入图片描述
    在这里插入图片描述

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:/a/912321.html

如若内容造成侵权/违法违规/事实不符,请联系我们进行投诉反馈qq邮箱809451989@qq.com,一经查实,立即删除!

相关文章

【微服务】不同微服务之间用户信息的获取和传递方案

如何才能在每个微服务中都拿到用户信息&#xff1f;如何在微服务之间传递用户信息&#xff1f; 文章目录 概述利用微服务网关做登录校验网关转微服务获取用户信息openFeign传递微服务之间的用户信息 概述 要在每个微服务中获取用户信息&#xff0c;可以采用以下几种方法&#…

HarmonyOS入门 : 获取网络数据,并渲染到界面上

1. 环境搭建 开发HarmonyOS需要安装DevEco Studio&#xff0c;下载地址 : https://developer.huawei.com/consumer/cn/deveco-studio/ 2. 如何入门 入门HarmonyOS我们可以从一个实际的小例子入手&#xff0c;比如获取网络数据&#xff0c;并将其渲染到界面上。 本文就是基于…

SpringMVC总结 我的学习笔记

SpringMVC总结 我的学习笔记 一、SpringMVC简介1.MVC2.SpringMVC概述3. SpringMVC中的核心组件4.SpringMVC核心架构流程 二、SpringMVC框架实例具体实现使用注解实现 四、数据处理及跳转1.结果跳转方式2.处理器方法的参数与返回值处理提交数据数据显示到前端 五、RestFul风格1.…

Qml 模型-视图-代理(贰)之 动态视图学习

Repeater 元素适合有限的静态数据&#xff0c; QtQuick 提供了 ListView 和 GridView, 这两个都是基于 Flickable(可滑动) 区域的元素 &#xff0c; ListView 与 Repeater 相比&#xff0c; ListView 使用了一个 model&#xff0c; 使用delegate 来 实例化&#xff0c;并且在两…

rce代码层面

目录 RCE的分类Remote Code Execute 远程代码执⾏php Remote Command Execte 远程命令执⾏php shell的相关知识管道重定向fd反弹shell linux进程的创建c/php/python下的system()/popen()函数python的subprocess.call函数java的Runtime.getRuntime().exec和ProcessBuilder()命令…

一篇文章入门docker!

文章目录 DockerUbuntu 下 docker 安装安装docker运行docker Docker的常用命令帮助命令镜像命令容器命令其他常用命令小结 分层理解一、Docker镜像的分层结构二、UnionFS与镜像分层三、镜像层的具体内容四、镜像分层的好处五、容器层与镜像层的关系 如何提交一个自己的镜像 Doc…

【大数据学习 | HBASE】habse的表结构

在使用的时候hbase就是一个普通的表&#xff0c;但是hbase是一个列式存储的表结构&#xff0c;与我们常用的mysql等关系型数据库的存储方式不同&#xff0c;mysql中的所有列的数据是按照行级别进行存储的&#xff0c;查询数据要整个一行查询出来&#xff0c;不想要的字段也需要…

泛微E9 OA与金蝶云的差旅费报销接口集成

FD001-差旅费报销申请 泛微>金蝶--498 集成案例分享 在企业日常运营中&#xff0c;差旅费报销申请的处理效率直接影响到员工满意度和财务管理的精确性。为了实现泛微OA-Http系统与金蝶云星空平台之间的数据无缝对接&#xff0c;我们设计并实施了FD001-差旅费报销申请集成方…

鸿蒙开发:ArkUI Toggle 组件

ArkUI提供了一套完整的UI开发工具集&#xff0c;帮助开发者高效完成页面的开发。它融合了语言、编译器、图形构建等关键的应用UI开发底座&#xff0c;为应用的UI开发提供了完整的基础设施&#xff0c;包括简洁的UI语法、丰富的UI功能以及实时界面预览工具等&#xff0c;可以支持…

ONLYOFFICE 文档8.2更新评测:PDF 协作编辑、性能优化及更多新功能体验

文章目录 &#x1f340;引言&#x1f340;ONLYOFFICE 产品简介&#x1f340;功能与特点&#x1f340;体验与测评ONLYOFFICE 8.2&#x1f340;邀请用户使用&#x1f340; ONLYOFFICE 项目介绍&#x1f340;总结 &#x1f340;引言 在日常办公软件的选择中&#xff0c;WPS 和微软…

Webserver(5.6)服务器压力测试

目录 webbench是linux上一款知名的优秀的web性能压力测试工具。 测试处在相同硬件上&#xff0c;不同服务的性能以及在不同硬件上同一个服务的运行状况 展示服务器的两项内容&#xff1a;每秒钟响应请求数和每秒钟传输数据量 webbench首先fork多个子进程&#xff0c;每个子进程…

数据结构:顺序表(动态顺序表)

专栏说明&#xff1a;本专栏用于数据结构复习&#xff0c;文章中出现的代码由C语言实现&#xff0c;在专栏中会涉及到部分OJ题目&#xff0c;如对你学习有所帮助&#xff0c;可以点赞鼓励一下博主喔&#x1f493; 博客主页&#xff1a;Duck Bro 博客主页系列专栏&#xff1a;数…

【ACM出版,九大高校联合举办, IEEE Fellow支持】2024年计算机视觉与艺术研讨会(CVA 2024,11月29-12月1日)

2024年计算机视觉与艺术研讨会&#xff08;CVA 2024&#xff09; 2024 Seminar on Computer Vision and Art 基本信息 会议官网&#xff1a;www.icadi.net 2024 Seminar on Computer Vision and Artwww.icadi.net(CVA为ICADI分会&#xff0c;网站沿用主会议&#xff1b;议程、…

若依框架-添加测试类-最新

1、在【ruoyi-admin】的pom.xml下添加依赖 <!-- 单元测试--><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-test</artifactId><scope>test</scope></dependency><dependency>…

用 Python 从零开始创建神经网络(二)

用 Python 从零开始创建神经网络&#xff08;二&#xff09; 引言1. Tensors, Arrays and Vectors&#xff1a;2. Dot Product and Vector Additiona. Dot Product &#xff08;点积&#xff09;b. Vector Addition &#xff08;向量加法&#xff09; 3. A Single Neuron with …

信息安全工程师(76)网络安全应急响应技术原理与应用

前言 网络安全应急响应&#xff08;Network Security Incident Response&#xff09;是针对潜在或已发生的网络安全事件而采取的网络安全措施&#xff0c;旨在降低网络安全事件所造成的损失并迅速恢复受影响的系统和服务。 一、网络安全应急响应概述 定义&#xff1a;网络安全应…

JavaScript:点击导航栏未显示完整的tab自动滚动并显示完整

提醒 本文实例使用vue开发的 一、需求场景 开发商品分类页面需求如下&#xff1a; 顶部显示商品分类导航栏&#xff0c;可左右自由滑动&#xff0c;点击左边或右边未显示完整的tab自动滚动显示完整&#xff1b;点击顶部显示商品分类导航栏tab&#xff0c;下面列表数据显示对应的…

【C++】详解RAII思想与智能指针

&#x1f308; 个人主页&#xff1a;谁在夜里看海. &#x1f525; 个人专栏&#xff1a;《C系列》《Linux系列》 ⛰️ 丢掉幻想&#xff0c;准备斗争 目录 引言 内存泄漏 内存泄漏的危害 内存泄漏的处理 一、RAII思想 二、智能指针 1.auto_ptr 实现原理 模拟实现 弊端…

力扣: 144 二叉树 -- 先序遍历

二叉树 – 先序遍历 描述&#xff1a; 给你二叉树的根节点 root &#xff0c;返回它节点值的 前序 遍历。 示例&#xff1a; 先序遍历&#xff1a;根左右 何解&#xff1f; 1、递归 : 无需多言一看就懂 2、遍历法 中序查找时&#xff0c;最先出入的节点是左子树中的最左侧二叉…

从0开始搭建一个生产级SpringBoot2.0.X项目(十)SpringBoot 集成RabbitMQ

前言 最近有个想法想整理一个内容比较完整springboot项目初始化Demo。 SpringBoot集成RabbitMQ RabbitMQ中的一些角色&#xff1a; publisher&#xff1a;生产者 consumer&#xff1a;消费者 exchange个&#xff1a;交换机&#xff0c;负责消息路由 queue&#xff1a;队列…