斯威夫特山地车

In this program, we will have an idea - how two numbers can be added and displayed as the output on the screen?

在此程序中,我们将有一个想法- 如何将两个数字相加并显示为屏幕上的输出

Open XCode terminal and type the following program

打开XCode终端并键入以下程序

import Foundation
var num1 = 4;
var num2 = 6;
var ans = Int();
ans = num1+num2;
print("num1 + num2 = ",ans);

Output

输出量

num1 + num2 = 10
Program ended with exit code: 0

Explanation:

说明:

  • import Foundation is a library which is used to access all the functions present that header file.

    import Foundation是一个库,用于访问该头文件中提供的所有功能。

  • var is a data type with num1 as a variable whose value is initialized as 4. Similarly, num2 is a variable with same data type whose value is initialized as 6.

    var是一种数据类型,以num1作为变量,其值初始化为4 。 同样, num2是具有相同数据类型的变量,其值初始化为6

  • Whereas, var ans includes same data type with ans as a variable where the result is stored.

    而var ans包含与ans相同的数据类型,而ans作为存储结果的变量。

  • print function prints the string with the answer on the output screen.

    打印功能在输出屏幕上打印带有答案的字符串。

  • Whereas, "program ended with exit code: 0" at the end shows that there are no further programs to be run.

    结尾处的“程序以退出代码0结尾”表示没有其他程序要运行。

  • Semicolon ";" is must after every end of the command as similar in C/C++ etc.

    分号“;” 在命令的每个结尾之后必须是,类似于C / C ++等。

翻译自: https://www.includehelp.com/swift/addition-of-two-numbers.aspx

斯威夫特山地车

斯威夫特山地车_斯威夫特| 两个数字相加的程序相关推荐

  1. kotlin 两个数字相加_Kotlin程序交换两个数字

    kotlin 两个数字相加 Given two numbers, we have to swap them. 给定两个数字,我们必须交换它们. Example: 例: Input: First num ...

  2. 斯威夫特山地车_斯威夫特弦乐

    斯威夫特山地车 Today we will look into Swift String operations. Furthermore, we'll be discussing the change ...

  3. 斯威夫特山地车_斯威夫特枚举

    斯威夫特山地车 In this tutorial, we'll be discussing the basics of Swift enum. You must be familiar with En ...

  4. 斯威夫特山地车_斯威夫特字典

    斯威夫特山地车 Swift Dictionary is one of the important collection types. Let's get started by launching th ...

  5. JavaScript实现使用二元运算符将两个数字相加fullAdder算法(附完整源码)

    JavaScript实现使用二元运算符将两个数字相加fullAdder算法(附完整源码) getBit.js完整源代码 fullAdder.js完整源代码 getBit.js完整源代码 export ...

  6. C语言将两个数字相加,然后将和作为链接列表返回(附完整源码)

    C语言将两个数字相加,然后将和作为链接列表返回 C语言将两个数字相加,然后将和作为链接列表返回完整源码(定义,实现,main函数测试) C语言将两个数字相加,然后将和作为链接列表返回完整源码(定义,实 ...

  7. C++在不使用任何算术运算符的情况下将两个数字相加(附完整源码)

    C++在不使用任何算术运算符的情况下将两个数字相加 C++在不使用任何算术运算符的情况下将两个数字相加完整源码(定义,实现,main函数测试) C++在不使用任何算术运算符的情况下将两个数字相加完整源 ...

  8. 设计一个函数把两个数字相加。不得使用 + 或者其他算术运算符

    设计一个函数把两个数字相加.不得使用 + 或者其他算术运算符. 示例: 输入: a = 1, b = 1 输出: 2 提示: a, b 均可能是负数或 0     结果不会溢出 32 位整数 解题思路 ...

  9. python两个数相加程序_python程序两个数字相加

    在下面的程序中,使用了+运算符来相加两个数字. 例子1:相加两个数字# This program adds two numbers num1 = 1.5 num2 = 6.3 # Add two nu ...

最新文章

  1. [置顶] Application,Session,Cookie之Application对象
  2. 阿里宣布成立云原生技术委员会,释放哪些趋势信息?
  3. Hadoop上路_11-HDFS流程演示
  4. 如何隐藏SAP CRM WebClient UI配置页面的字段
  5. ABAP formula
  6. Android之PhotoView使用(原创)
  7. 二分搜索:lower_bound 与 upper_bound 函数
  8. 远程连接 Mysql 失败的解决方法
  9. 斯坦福大学stanford
  10. Hibernate详细教程使用
  11. 魔术的逻辑(一)——魔术是怎么发生的?
  12. 百度贴吧恶意代码分析
  13. 银河麒麟最新V10系统下载链接
  14. shell之大小写转换
  15. arm linux not syncing,Linux系统启动中途停止,提示Kernel panic - not syncing: Attempted to kill init!...
  16. 使IE浏览器支持webp格式图片显示
  17. 利用matlab绘制简单IFS图形(Sierpinski三角形和BarnsleyFern巴恩斯利蕨)
  18. 报表练习题:销售订单打印的相关说明
  19. 第三章 正确认识MVC
  20. 使用Keil uVision5进行开发的必备知识

热门文章

  1. Metasploit入门用法(主动攻击)
  2. php 判断两个数组差集,php array_udiff_assoc 计算两个数组的差集实例
  3. java list 合并去重_java 怎么把多个list 合并成一个去掉重复的
  4. java saxreader_JAVA解析XML,SAXReader无法使用
  5. jquery常用表单操作
  6. JS_理解函数参数按值传递
  7. webpack常用loader和plugin及打包速度优化
  8. 使用JS实现文字搬运工
  9. layui数据表格(一:基础篇,数据展示、分页组件、表格内嵌表单和图片)
  10. glup打包代码不更新