c语言if else语句_查找C程序的输出(如果为else语句)| 设置1

c语言if else语句

Find the output of the following programs,

查找以下程序的输出,

Program 1)

程序1)

#include <stdio.h>
int main()
{
int x = 400, y, z;
if (x >= 500)
y = 400;
z = 300;
printf("%d %d\n", y, z);
return 0;
}

Output

输出量

32766 300

Explanation:

说明:

In the code, the condition x>=500 is false, so the variable y will not be assigned and the statement z=300 is written after the conditional statement, so it will be assigned with 300. Thus, the value of y will be a garbage value and value of z will be 300.

在代码中,条件x> = 500为假,因此将不分配变量y,并且在条件语句之后写入语句z = 300 ,因此将其分配为300。因此, y的值将为垃圾值和z的值为300。

Program 2)

程序2)

#include <stdio.h>
int main()
{
int p = 800, q, r;
if (p >= 700)
q = 600;
r = 500;
printf("%d %d\n", q, r);
return 0;
}

Output

输出量

600 500

Explanation:

说明:

In the code, the condition p>=700 is true, so the variable q will be assigned with the value 600 and the statement r=500 is written after the conditional statement, so it will be assigned with 500. Thus, the value of q will be a 600 value and value of r will be 500.

在代码中,条件p> = 700为true,因此将为变量q分配值600,并在条件语句后写入语句r = 500 ,因此将其分配为500。因此, q将是600的值,而r的值将是500。

Program 3)

程序3)

#include <stdio.h>
int main()
{
int a = 30, b = 40;
if (a == b);
printf("%d %d\n", a, b);
return 0;
}

Output

输出量

30 40

Explanation:

说明:

In the code, the condition if(a==b); is terminated with semicolon so the statement printf("%d %d\n",a,b); will not be consider as a body of the if statement. Thus, the program will print the value of a and b.

在代码中,条件为if(a == b); 以分号终止,因此语句printf(“%d%d \ n”,a,b); 不会被视为if语句的主体。 因此,程序将打印a和b的值。

Program 4)

程序4)

#include <stdio.h>
int main()
{
int e = 4;
float f = 4.0;
if (e == f) {
printf("E and F are equal\n");
}
else {
printf("E and F are not equal");
}
return 0;
}

Output

输出量

E and F are equal

Explanation:

说明:

In the code, variable e is an integer type and variable f is a float type, while comparing them with an if statement (if(e==f)), the value of f will be truncated to an integer (due to implicit type conversion). Thus, the condition will be true and "E and F are equal" will be printed.

在代码中,变量e是整数类型,变量f是浮点类型,将它们与if语句( if(e == f) )进行比较时, f的值将被截断为整数(由于隐式类型)转换)。 因此,条件为真, 并且将打印“ E和F相等”

Program 5)

程序5)

#include <stdio.h>
int main()
{
int p = 4, q, r;
q = p = 15;
r = p < 15;
printf("p = %d q = %d r = %d\n", p, q, r);
return 0;
}

Output

输出量

p = 15 q = 15 r = 0

Explanation:

说明:

In the code, the statement q = p = 15; is assigning 15 to the variables p and q and the statement r = p<15; is assigning 0 to the variable r because p is not less than 15 (condition is false). Thus, the value of p, q and r will be 15, 15, and 0.

在代码中,语句q = p = 15; 将变量p和q赋值为15,并且语句r = p <15; 因为p不小于15(条件为假),所以将0赋给变量r 。 因此, p , q和r的值将分别为15、15和0。

Program 6)

计划6)

#include <stdio.h>
int main()
{
int i = 65;
char j = 'A';
if (i == j) {
printf("This place is beautiful\n");
}
else {
printf("This place is not beautiful\n");
}
return 0;
}

Output

输出量

This place is beautiful

Explanation:

说明:

The character variable stores the ASCII code of the given character (it's also a number type of variable). Thus, the value of j will be 65 (The ASCII Code of 'A' is 65). So the condition if(i==j) will be true and "This place is beautiful" will be printed.

字符变量存储给定字符的ASCII码(它也是变量的数字类型)。 因此, j的值为65(“ A”的ASCII码为65)。 因此条件if(i == j)将为true,并且将打印“这个地方很漂亮”

Program 7)

计划7)

#include <stdio.h>
int main()
{
float p = 13.25, q = 14.5;
if (p = q) {
printf("Hello\n");
}
return 0;
}

Output

输出量

Hello

Explanation:

说明:

In the statement if(p=q), p=q is not a comparison operation, we used = (assignment operator), thus the value of q will be assigned into p and the statement will be evaluated to 14.5 which is a non-zero value and conditional will be true.

在语句if(p = q) , p = q不是比较运算的情况下,我们使用= (赋值运算符),因此q的值将分配给p,并且该语句的计算结果为14.5 ,这不是零值和条件将为真。

Recommended posts

推荐的帖子

  • Find output of C programs (if else statement) | set 2

    查找C程序的输出(如果为else语句)| 设置2

  • Find output of C programs (Bitwise Operators) | Set 1

    查找C程序的输出(按位运算符)| 套装1

  • Find output of C programs (Bitwise Operators) | Set 2

    查找C程序的输出(按位运算符)| 套装2

  • Find output of C programs (Strings) | Set 1

    查找C程序的输出(字符串)| 套装1

  • Find output of C programs (Strings) | Set 2

    查找C程序的输出(字符串)| 套装2

  • Find output of C programs (Structures) | Set 1

    查找C程序的输出(结构)| 套装1

  • Find output of C programs (Mixed topics) | Set 1

    查找C程序的输出(混合主题)| 套装1

  • Find output of C programs (Mixed topics) | Set 2

    查找C程序的输出(混合主题)| 套装2

  • Find output of C programs (Mixed topics) | Set 3

    查找C程序的输出(混合主题)| 套装3

  • Find output of C programs (Character) | Set 1

    查找C程序的输出(字符)| 套装1

  • Find output of C programs (floating point) | Set 1

    查找C程序的输出(浮点数)| 套装1

  • Find output of C programs (For loops) | Set 1

    查找C程序的输出(用于循环)| 套装1

  • Find output of C programs (Arrays) | Set 1

    查找C程序的输出(数组) 套装1

翻译自: https://www.includehelp.com/c/if-else-find-output-of-programs-c-set-1.aspx

c语言if else语句

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

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Javascript模块化编程(二):AMD规范

这个系列的第一部分介绍了Javascript模块的基本写法&#xff0c;今天介绍如何规范地使用模块。 七、模块的规范 先想一想&#xff0c;为什么模块很重要&#xff1f; 因为有了模块&#xff0c;我们就可以更方便地使用别人的代码&#xff0c;想要什么功能&#xff0c;就加载什么模…

html侧滑菜单mui,mui侧滑菜单点击含有mui-action-menu类的控件无法实现侧滑

.mui-action-menu标题栏 菜单按钮 指定href"#id"显示与隐藏侧滑菜单html:侧滑菜单列表侧滑菜单列表2侧滑菜单列表3标题具体内容href:https://badfl.gitbooks.io/mui/content/mui-action-menu.htmlAndroid 使用代码主动去调用控件的点击事件(模拟人手去触摸控件)使用代…

hanlp 训练模型_LTP 4.0!单模型完成6项自然语言处理任务

来源|哈工大SCIR语言技术平台&#xff08;Language Technology Platform, LTP&#xff09;是哈工大社会计算与信息检索研究中心&#xff08;HIT-SCIR&#xff09;历时多年研发的一整套高效、高精度的中文自然语言处理开源基础技术平台。该平台集词法分析&#xff08;分词、词性…

typescript 学习

typescript将在不久的将来从前端大一统的趋势中脱颖而出成为主流编译器。学习ts对前端开发人员来说是不可或缺的。同时&#xff0c;也要抓紧学习es2015/6/7。ts和es6并不是对立的。而是相辅相成的。ts的竞争和打击对象实质上是babel…… 官方资料 # 官方地址&#xff1a; https…

计算机中央处理器cpu_中央处理器(CPU)| 计算机科学组织

计算机中央处理器cpu中央处理器(CPU) (Central Processing Unit (CPU)) The CPU is the brain of the computer system. It works as an administrator of a system. CPU是计算机系统的大脑。 它以系统管理员的身份工作。 All the operations within the system are supervised…

计算机应用基础专2020春,计算机应用基础(专)(专,2020春)(20200831130023).pdf

计算机应用基础(专)(专&#xff0c; 2020 春)使用 " 格式刷”按钮&#xff0c;可以进行 ___________操作。选择一项&#xff1a;a. 复制文本的格式b. 删除文本c. 复制文本d. 保持文本你的回答正确正确答案是&#xff1a;复制文本的格式在 Word 的文档中插入复杂的数学公式…

computed set 自定义参数_深入理解vmodel之自定义组件用法

根据上一篇《深入理解 v-model 之表单用法》基本对 v-model 有了比较深的理解&#xff0c;接下来我们看看它如何在自定义组件中使用。首先&#xff0c;我们知道下面两个用法等价的&#xff1a;<input v-model"msg" /><input :value"msg" input&qu…

01json转字符串

/** * json转字符串声明 */ (NSString *)jsonToString:(NSDictionary *)dic; /** * json转字符串实现 */ (NSString *)jsonToString:(NSDictionary *)dic { if(!dic){ return nil; } NSData *jsonData [NSJSONSerialization dataWithJSONObject:dic options:NSJSONWriting…

AYUSH的完整形式是什么?

AYUSH&#xff1a;阿育吠陀&#xff0c;瑜伽和自然疗法&#xff0c;乌纳尼&#xff0c;悉达多和顺势疗法 (AYUSH: Ayurvedic, Yoga and Naturopathy, Unani, Siddha and Homeopathy) AYUSH is an abbreviation of Ayurvedic, Yoga and Naturopathy, Unani, Siddha, and Homeopa…

大班科学电子计算机,计算器教案

计算器的认识和简单应用教学内容&#xff1a;义务教育六年制小学第九册第二单元第42页。教学目标&#xff1a;1、通过学生自主探究&#xff0c;掌握计算器的使用方法&#xff0c;并能够用计算器进行简单的计算。2、借助计算器解决生活中的数学问题、探索数学规律&#xff0c;体…

arraylist能否接收强转类型_ArrayList 源码解析

点击上方"IT牧场"&#xff0c;选择"设为星标"技术干货每日送达&#xff01;前言 JDK源码解析系列文章&#xff0c;都是基于JDK8分析的&#xff0c;虽然JDK14已经出来&#xff0c;但是JDK8我还不会&#xff0c;我…类图 实现了RandomAccess接口&#xff0c;…

exit c+_C / C ++中的exit(0)vs exit(1)与示例

exit cexit() is a library function in C/C programming language, it is used to terminate the calling process (function) immediately i.e. we can say it is used for the normal program termination and also perform the several cleanup steps. exit()是C / C 编程语…

校园计算机网络系统,校园计算机网络系统

一、校园网的基本概念基本功能&#xff1a;数据交换、资源共享&#xff0c;这里所指的数据包括各种信息&#xff0c;基本组成和结构&#xff1a;基本网络由网络网络的分类&#xff1a;有多种分类方法&#xff0c;按规模可分为局域网、区域网、&127;广域网。局域网服务范围一…

mc有什么红石机器人_我的世界10月考试!来测测你的MC成绩吧~

考试规则&#xff1a;本次考试为闭卷考试&#xff0c;考生需要在30分钟内完成试卷。试卷总分为100分&#xff0c;其中包括单项选择题50分&#xff0c;多项选择题20分&#xff0c;判断题30分。考试内容包括《我的世界》手游1.11.0及以上版本在不添加任何模组的情况下的所有游戏内…

130、 Android OkHttp完全解析(转载)

完全解析&#xff1a;http://blog.csdn.net/lmj623565791/article/details/47911083 从原理角度解析http文件上传 http://blog.csdn.net/lmj623565791/article/details/23781773 https://github.com/hongyangAndroid/okhttputils

json转string示例_C.示例中的String.Copy()方法

json转string示例C&#xff03;String.Copy()方法 (C# String.Copy() Method) String.Copy() method is used to copy a string to new string object, it returns a new instance of String with the same value as given string. String.Copy()方法用于将字符串复制到新的字符…

自定义分页 html,MVC 自定义HtmlHelper帮助类型之分页

方法一&#xff1a;在项目中增加App_Code文件夹&#xff0c;新增一个MyHtmlper.cshtml视图文件写入代码&#xff1a;helper Pagger(int pageIndex, int pageCount){for (int i 1; i < pageCount; i){if (i ! pageIndex){(i)}else{i}}}新增一个HomeControllerpublic class H…

vue 对象继承_Vue2.0中组件的继承与扩展是什么

Vue2.0中组件的继承与扩展是什么发布时间&#xff1a;2020-12-07 14:04:09来源&#xff1a;亿速云阅读&#xff1a;100作者&#xff1a;小新小编给大家分享一下Vue2.0中组件的继承与扩展是什么&#xff0c;相信大部分人都还不怎么了解&#xff0c;因此分享这篇文章给大家参考一…

stack示例_C.示例中的Stack.Clone()方法

stack示例C&#xff03;Stack.Clone()方法 (C# Stack.Clone() method) Stack.Clone() method is used to create a shallow copy of the stack. Stack.Clone()方法用于创建堆栈的浅表副本。 Syntax: 句法&#xff1a; Object Stack.Clone();Parameters: None 参数&#xff1a…

简述计算机图形的图形应用主要有哪些,5计算机图形学考试简答题复习.doc

5计算机图形学考试简答题复习计算机图形学考试简答题复习1、简述计算机动画的概念&#xff0c;它经历了哪几个阶段的发展&#xff1f;(2分)计算机动画是指采用图形与图像的处理技术&#xff0c;借助于编程或动画制作软件生成一系列的景物画面&#xff0c;其中当前帧是前一帧的部…