以前年度资产价值导入以及汇率自动计算解决方案

news2024/11/16 19:42:55

文章目录

      • 1 Introduction
      • 2 Code
      • 3 Summary

1 Introduction

In the example we will finish ABLDT function and modify asset value .

2 Code


  DATA: key                   TYPE bapi1022_key,
        generaldata           TYPE bapi1022_feglg001,
        generaldatax          TYPE bapi1022_feglg001x,
        postinginformation    TYPE bapi1022_feglg002,
        postinginformationx   TYPE bapi1022_feglg002x,
        allocations           TYPE bapi1022_feglg004,
        allocationsx          TYPE bapi1022_feglg004x,
        timedependentdata     TYPE bapi1022_feglg003,
        timedependentdatax    TYPE bapi1022_feglg003x,
        origin                TYPE bapi1022_feglg009,
        originx               TYPE bapi1022_feglg009x,
        transactions          TYPE STANDARD TABLE OF bapi1022_trtype     WITH HEADER LINE,
        depreciationareas     TYPE STANDARD TABLE OF bapi1022_dep_areas  WITH HEADER LINE,
        depreciationareasx    TYPE STANDARD TABLE OF bapi1022_dep_areasx WITH HEADER LINE,
        postedvalues          TYPE STANDARD TABLE OF bapi1022_postval    WITH HEADER LINE,
        cumulatedvalues       TYPE STANDARD TABLE OF bapi1022_cumval     WITH HEADER LINE,
        return                TYPE STANDARD TABLE OF bapiret2           WITH HEADER LINE,
        extensionin           TYPE STANDARD TABLE OF bapiparex WITH HEADER LINE,
        lt_investment_support TYPE STANDARD TABLE OF bapi1022_inv_support WITH HEADER LINE.



  DATA:companycode LIKE  bapi1022_1-comp_code,
       asset       LIKE  bapi1022_1-assetmaino,
       subnumber   LIKE  bapi1022_1-assetsubno.



  CLEAR:gv_num,gv_count.
  gv_num = lines( i_data )."上传条目数

  LOOP AT i_data INTO wa_data.
    IF wa_data-name06 IS INITIAL.
      wa_data-message = TEXT-009.
      wa_data-type = 'E'.
      APPEND wa_data TO it_data.
      CONTINUE.
    ENDIF.
    key-companycode = wa_data-name02.                  "公司代码
    key-asset       = wa_data-name34.   "资产
    key-subnumber   = '0'.           "次级编号

    generaldata-assetclass  = wa_data-name01.          "资产分类
    generaldatax-assetclass = 'X'.
    generaldata-quantity  = wa_data-name08.            "数量
    generaldatax-quantity = 'X'.
    generaldata-base_uom    = wa_data-name09.          "基本计量单位
    generaldatax-base_uom    = 'X'.
    generaldata-descript   = wa_data-name03.           "资产描述
    generaldatax-descript  = 'X'.
    generaldata-descript2  = wa_data-name04.           "附加资产描述
    generaldatax-descript2 = 'X'.
    generaldata-main_descript  = wa_data-name05.           "设备编码
    generaldatax-main_descript = 'X'.

    generaldata-invent_no  = wa_data-name32.           "存货号  EAS资产号
    generaldatax-invent_no = 'X'.

    postinginformation-cap_date  = wa_data-name10.
    postinginformationx-cap_date = 'X'.                "资产资本化日期


    timedependentdata-costcenter = wa_data-name11.     "成本中心
    timedependentdatax-costcenter = 'X'.

    timedependentdata-plant = wa_data-name35.     "工厂
    timedependentdatax-plant = 'X'.

    timedependentdata-bus_area = wa_data-name12.     "业务范围
    timedependentdatax-bus_area = 'X'.

    origin-vendor_no = wa_data-name17.        "供应商
    originx-vendor_no = 'X'.                  "供应商

    origin-manufacturer = wa_data-name33.        "制造商   原始资产号
    originx-manufacturer = 'X'.                  "制造商   原始资产号

    origin-type_name = wa_data-name28.  "类型名   原始购入日期
    originx-type_name = 'X'.

    allocations-evalgroup1 = wa_data-name16.           "评审小组1使用状态
    allocationsx-evalgroup1 = 'X'.
    allocations-evalgroup2 = wa_data-name06.           "评审小组2-资产来源 20200301 add by skyyan
    allocationsx-evalgroup2 = 'X'.

    "  add it by  sie_jinggl start 20240123

    IF wa_data-name36   IS NOT INITIAL .
      CLEAR:depreciationareas ,depreciationareasx , cumulatedvalues,transactions,postedvalues.
      CLEAR depreciationareas[].
      CLEAR depreciationareasx[].
      depreciationareas-area = '01'.
      depreciationareas-dep_key = wa_data-name19.        "折旧码
      depreciationareas-ulife_yrs = wa_data-name20.      "计划年使用期
      depreciationareas-ulife_prds = wa_data-name21.     "计划使用期间
      depreciationareas-odep_start_date  = wa_data-name38.     "折旧计算开始日期

      APPEND depreciationareas.
      depreciationareasx-area = '01'.
      depreciationareasx-dep_key = 'X'.                  "折旧码
      depreciationareasx-ulife_yrs = 'X'.                "计划年使用期
      depreciationareasx-ulife_prds = 'X'.               "计划使用期间
      depreciationareasx-exp_ulife_yrs = 'X'.            "原始使用年
      depreciationareasx-exp_ulife_prds = 'X'.           "原始使用期间
      depreciationareasx-odep_start_date = 'X'.           " "
      APPEND depreciationareasx.

      CLEAR: cumulatedvalues[].
      IF wa_data-name10+0(4) < sy-datum+0(4).
        cumulatedvalues-fisc_year     = sy-datum+0(4)."'2020'.            "年度
        cumulatedvalues-area     = '01'.                   "范围
        cumulatedvalues-acq_value = wa_data-name37.        "购置价值
        cumulatedvalues-ord_dep = 0 - wa_data-name26.          "累积普通折旧

        APPEND cumulatedvalues.

      ELSE.

        CLEAR transactions[].
        IF wa_data-name38 IS NOT INITIAL.
          transactions-valuedate = wa_data-name38.
          transactions-current_no = '00001'.
          transactions-fisc_year  =  sy-datum+0(4)."'2020'.                  "会计年
          transactions-assettrtyp = '100'.          "事物类型
          transactions-area       = '01'."wa_data-name33'.          "折旧范围
          transactions-amount     = wa_data-name37.          "记账金额
          APPEND transactions.
        ENDIF.


      ENDIF.


      IF  wa_data-name27   <>  0.

        CLEAR postedvalues[].
        postedvalues-fisc_year     = sy-datum+0(4)."'2020'.               "年度
        postedvalues-area     = '01'.                      "范围
        postedvalues-ord_dep = 0 - wa_data-name27.             "一般折旧

        APPEND postedvalues.

      ENDIF.
*

    ENDIF.


    " add  it by sie_jinggl start
    "  The function is  depreciation Range2 .
    IF wa_data-name39   IS NOT INITIAL .
      CLEAR:depreciationareas ,depreciationareasx , cumulatedvalues,transactions,postedvalues.

      depreciationareas-area = '20'.
      depreciationareas-dep_key = wa_data-name40.        "折旧码
      depreciationareas-ulife_yrs = wa_data-name41.      "计划年使用期
      depreciationareas-ulife_prds = wa_data-name42.     "计划使用期间
      depreciationareas-odep_start_date  = wa_data-name43.     "折旧计算开始日期



      APPEND depreciationareas.
      depreciationareasx-area = '20'.
      depreciationareasx-dep_key = 'X'.                  "折旧码
      depreciationareasx-ulife_yrs = 'X'.                "计划年使用期
      depreciationareasx-ulife_prds = 'X'.               "计划使用期间
      depreciationareasx-exp_ulife_yrs = 'X'.            "原始使用年
      depreciationareasx-exp_ulife_prds = 'X'.           "原始使用期间
      depreciationareasx-odep_start_date = 'X'.           "折旧计算开始日
       "

      APPEND depreciationareasx.


      IF wa_data-name10+0(4) < sy-datum+0(4).
        cumulatedvalues-fisc_year     = sy-datum+0(4)."'2020'.            "年度
        cumulatedvalues-area     = '20'.                   "范围
        cumulatedvalues-acq_value = wa_data-name44.        "购置价值
        cumulatedvalues-ord_dep =  0 - wa_data-name45.          "累积普通折旧

*        cumulatedvalues-currency = 'USDT'.
*        cumulatedvalues-currency_iso  = 'USDT' .
        APPEND cumulatedvalues.


      ELSE.
        IF wa_data-name38 IS NOT INITIAL.
          transactions-valuedate = wa_data-name38.
          transactions-current_no = '00001'.
          transactions-fisc_year  =  sy-datum+0(4)."'2020'.                  "会计年
          transactions-assettrtyp = '100'.          "事物类型
          transactions-area       = '20'."wa_data-name33'.          "折旧范围
          transactions-amount     = wa_data-name44.          "记账金额
          APPEND transactions.
        ENDIF.

      ENDIF.
*      CLEAR postedvalues[].
      IF  wa_data-name46   <>  0.
        postedvalues-fisc_year     = sy-datum+0(4)."'2020'.               "年度
        postedvalues-area     = '20'.                      "范围
        postedvalues-ord_dep =  0 - wa_data-name46.             "一般折旧
*
*         postedvalues-currency = 'USDT'.
*         postedvalues-currency_iso = 'USDT'.
*        cumulatedvalues-currency_iso  = 'TRY' .
        APPEND postedvalues.
      ENDIF.


    ENDIF.


    "  The function is  depreciation Range3 .
    IF wa_data-name47  IS NOT INITIAL .
      CLEAR:depreciationareas ,depreciationareasx , cumulatedvalues,transactions,postedvalues.

      depreciationareas-area = '06'.
      depreciationareas-dep_key = wa_data-name48.        "折旧码
      depreciationareas-ulife_yrs = wa_data-name49.      "计划年使用期
      depreciationareas-ulife_prds = wa_data-name50.     "计划使用期间
      depreciationareas-odep_start_date  = wa_data-name51.     "折旧计算开始日期



      APPEND depreciationareas.
      depreciationareasx-area = '06'.
      depreciationareasx-dep_key = 'X'.                  "折旧码
      depreciationareasx-ulife_yrs = 'X'.                "计划年使用期
      depreciationareasx-ulife_prds = 'X'.               "计划使用期间
      depreciationareasx-exp_ulife_yrs = 'X'.            "原始使用年
      depreciationareasx-exp_ulife_prds = 'X'.           "原始使用期间
      depreciationareasx-odep_start_date = 'X'.           "折旧计算开始日



      APPEND depreciationareasx.



      IF wa_data-name10+0(4) < sy-datum+0(4).
        cumulatedvalues-fisc_year     = sy-datum+0(4)."'2020'.            "年度
        cumulatedvalues-area     = '06'.                   "范围
        cumulatedvalues-acq_value = wa_data-name52.        "购置价值
        cumulatedvalues-ord_dep =  0 - wa_data-name53.          "累积普通折旧

        APPEND cumulatedvalues.
      ELSE.

        IF wa_data-name38 IS NOT INITIAL.
          transactions-valuedate = wa_data-name38.
          transactions-current_no = '00001'.
          transactions-fisc_year  =  sy-datum+0(4)."'2020'.                  "会计年
          transactions-assettrtyp = '100'.          "事物类型
          transactions-area       = '06'."wa_data-name33'.          "折旧范围
          transactions-amount     = wa_data-name52.          "记账金额
          APPEND transactions.
        ENDIF.


*
      ENDIF.


*      CLEAR postedvalues[].
      IF wa_data-name54  <> 0 .
        postedvalues-fisc_year     = sy-datum+0(4)."'2020'.               "年度
        postedvalues-area     = '06'.                      "范围
        postedvalues-ord_dep =  0 - wa_data-name54.             "一般折旧
        APPEND postedvalues.
      ENDIF.



    ENDIF.

    "  The function is  depreciation Range4 .
    IF wa_data-name55  IS NOT INITIAL .
      CLEAR:depreciationareas ,depreciationareasx , cumulatedvalues,transactions,postedvalues.

      depreciationareas-area = '30'.
      depreciationareas-dep_key = wa_data-name56.        "折旧码
      depreciationareas-ulife_yrs = wa_data-name57.      "计划年使用期
      depreciationareas-ulife_prds = wa_data-name58.     "计划使用期间
      depreciationareas-odep_start_date  = wa_data-name59.     "折旧计算开始日期




      APPEND depreciationareas.
      depreciationareasx-area = '30'.
      depreciationareasx-dep_key = 'X'.                  "折旧码
      depreciationareasx-ulife_yrs = 'X'.                "计划年使用期
      depreciationareasx-ulife_prds = 'X'.               "计划使用期间
      depreciationareasx-exp_ulife_yrs = 'X'.            "原始使用年
      depreciationareasx-exp_ulife_prds = 'X'.           "原始使用期间
      depreciationareasx-odep_start_date = 'X'.           "折旧计算开始日
      APPEND depreciationareasx.



      IF wa_data-name10+0(4) < sy-datum+0(4).
        cumulatedvalues-fisc_year     = sy-datum+0(4)."'2020'.            "年度
        cumulatedvalues-area     = '30'.                   "范围
        cumulatedvalues-acq_value = wa_data-name60.        "购置价值
        cumulatedvalues-ord_dep =  0 - wa_data-name61.          "累积普通折旧
*        cumulatedvalues-currency = 'USDT'.
*        cumulatedvalues-currency_iso  = 'USDT' .
        APPEND cumulatedvalues.

      ELSE.
        IF wa_data-name38 IS NOT INITIAL.
          transactions-valuedate = wa_data-name38.
          transactions-current_no = '00001'.
          transactions-fisc_year  =  sy-datum+0(4)."'2020'.                  "会计年
          transactions-assettrtyp = '100'.          "事物类型
          transactions-area       = '01'."wa_data-name33'.          "折旧范围
          transactions-amount     = wa_data-name60.          "记账金额
          APPEND transactions.
        ENDIF.

      ENDIF.

*      CLEAR postedvalues[].
      IF wa_data-name62 <> 0 .
        postedvalues-fisc_year     = sy-datum+0(4)."'2020'.               "年度
        postedvalues-area     = '30'.                      "范围
        postedvalues-ord_dep =  0 - wa_data-name62.             "一般折旧
*        postedvalues-currency = 'USDT'.
*        postedvalues-currency_iso = 'USDT'.
        APPEND postedvalues.
      ENDIF.

    ENDIF.


    " add it by sie_jinggl  end 20240123

    gv_count = gv_count + 1.
    gv_prog = '正在处理数据...' && gv_count && '/' && gv_num.
    PERFORM frm_show_progress USING gv_prog.



    CALL FUNCTION 'BAPI_FIXEDASSET_OVRTAKE_CREATE'
      EXPORTING
        key                 = key
        generaldata         = generaldata
        generaldatax        = generaldatax
*       INVENTORY           =
*       INVENTORYX          =
        postinginformation  = postinginformation
        postinginformationx = postinginformationx
        timedependentdata   = timedependentdata
        timedependentdatax  = timedependentdatax
        allocations         = allocations
        allocationsx        = allocationsx
        origin              = origin
        originx             = originx
      IMPORTING
        companycode         = companycode
        asset               = asset
        subnumber           = subnumber
      TABLES
        depreciationareas   = depreciationareas
        depreciationareasx  = depreciationareasx
        cumulatedvalues     = cumulatedvalues
        postedvalues        = postedvalues
        transactions        = transactions
        return              = return.
    APPEND return.

    LOOP AT return  WHERE type = 'E' OR type = 'A'.
    ENDLOOP.
    IF sy-subrc NE 0.
      CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
        EXPORTING
          wait = 'X'.
      wa_data-message = '成功'.
      CONCATENATE asset wa_data-message INTO wa_data-message.
      wa_data-type = 'S'.
      APPEND wa_data TO it_data.
    ELSE.
      CALL FUNCTION 'BAPI_TRANSACTION_ROLLBACK'.
      wa_data-message = return-message.
      wa_data-type = 'E'.
      APPEND wa_data TO it_data.
    ENDIF.
    CLEAR return[].
  ENDLOOP.

3 Summary

Curr1 is local currency .
Curr2 is group currency.
在这里插入图片描述
If the system tell us htat we don’t changed it . We will cancel the field for deleting .

在这里插入图片描述
When the SAP system gets data by exchange rate and we hope we get value from input the following solution is here .
在这里插入图片描述
When I debug it and I find the control point is here (The system get data by exchange rate ).
在这里插入图片描述
在这里插入图片描述
When the field ‘wrtaft’ is not equal ‘00’ and we don’t get value by exchange rate .
在这里插入图片描述

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

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

相关文章

品牌突围|内容营销「共创公式」全面讲解

为什么品牌要扎根小红书&#xff1f;除了种草投放&#xff0c;品牌还能做些什么&#xff1f; 在小红书&#xff0c;迎接消费者共创的时代&#xff0c;激活品牌营销的无限潜能。 拥抱多元 在新机遇中预见未来 2023年&#xff0c;各大社交媒体平台涌现出了许多热点&#xff0c…

keil使用教程

提示&#xff1a;文章写完后&#xff0c;目录可以自动生成&#xff0c;如何生成可参考右边的帮助文档 文章目录 前言一、pandas是什么&#xff1f;二、使用步骤 1.引入库2.读入数据 总结 前言 例如&#xff1a;随着人工智能的不断发展&#xff0c;机器学习这门技术也越来越重…

jupyter python笔记杂乱

问题产生的原因: 无法执行sess.run()的原因是tensorflow版本不同导致的&#xff0c;tensorflow版本2.0无法兼容版本1.0 解决办法: tf.compat.v1.disable_eager_execution() 确保tf’2能运行tf1的代码 notebok打开指定文件夹 直接解决

代码随想录刷题笔记-Day12

1. 二叉树的递归遍历 144. 二叉树的前序遍历https://leetcode.cn/problems/binary-tree-preorder-traversal/94. 二叉树的中序遍历https://leetcode.cn/problems/binary-tree-inorder-traversal/145. 二叉树的后续遍历https://leetcode.cn/problems/binary-tree-postorder-tra…

鸿蒙:@Link装饰器-父子双向同步

子组件中被Link装饰的变量与其父组件中对应的数据源建立双向数据绑定。从API version 9开始&#xff0c;该装饰器支持在ArkTS卡片中使用。 需要注意&#xff1a;Link装饰的变量与其父组件中的数据源共享相同的值。Link装饰器不能在Entry装饰的自定义组件中使用。 一、装饰器使…

【word】论文、报告:①插入图表题注,交叉引用②快速插入图表目录③删改后一键更新

【word】①插入图表题注&#xff0c;②删改后一键更新 写在最前面插入题注交叉引用修改插入题注的文字格式快速插入图表目录 插入题注后有删改&#xff0c;实现编号一键更新 &#x1f308;你好呀&#xff01;我是 是Yu欸 &#x1f30c; 2024每日百字篆刻时光&#xff0c;感谢你…

按配置数据绘制配置型地图marker的icon,自定义marker

一、需求 需要自定义配置数据的marker&#xff0c;其中图片内容要灵活可配置自动生成。此处项目用的百度地图。 效果图&#xff1a; 二、思路 用背景图canvas绘制数字的方式生成icon的图片资源。 再将icon生成对应地图marker。 三、代码 canvasImg.js <!-- * descrip…

【misc | CTF】攻防世界 适合作为桌面

天命&#xff1a;这题还挺繁琐的&#xff0c;知识点还不少 目录 步骤1&#xff1a;图片隐写 步骤2&#xff1a;Winhex查看ascii码 步骤1&#xff1a;图片隐写 拿到这张图片&#xff0c;不可能扔进ps会有多图层&#xff0c;普通图片也就一个图层而已 但居然可以有隐写图片这…

数据结构之生成树及最小生成树

数据结构之生成树及最小生成树 1、生成树概念2、最小生成树 数据结构是程序设计的重要基础&#xff0c;它所讨论的内容和技术对从事软件项目的开发有重要作用。学习数据结构要达到的目标是学会从问题出发&#xff0c;分析和研究计算机加工的数据的特性&#xff0c;以便为应用所…

Linux-ROS学习之旅-话题编程(二)

##承接上一篇文章的知识&#xff0c;有下面的实例操作 通过代码新生一个海龟&#xff0c;放置在(5,5)点&#xff0c;命名为turtle2&#xff0c;通过代码订阅turtle2的实时位置并打印在终端&#xff0c;控制turtle2实现旋转运动 步骤&#xff1a; 1.创建一个工作空间和一个功…

可以实时监控电脑的软件有哪些?好用的四款电脑监控软件【高人气收藏分享】

在当今数字化时代&#xff0c;电脑已经成为我们工作和生活中不可或缺的工具。然而&#xff0c;有时候我们需要对电脑进行监控&#xff0c;以确保工作效率和保护个人隐私。因此&#xff0c;选择一款好的电脑监控软件非常重要。本文将介绍四款好用的电脑监控软件&#xff0c;并探…

行测-资料:1. 速算技巧、基期与现期

1、速算技巧 1.1 截位直除 1.1.1 截位 1.1.2 截谁 1.1.3 截几位 选项差距大&#xff1a; 四个选项首位均不同首位相同&#xff0c;第二位差大于首位 选项差距小&#xff1a; 首位相同且第二位差小于等于首位 例子 C&#xff0c;截两位。 C&#xff0c;截两位。 B&#xff0c;截…

第十七讲_HarmonyOS应用开发Stage模型应用组件

HarmonyOS应用开发Stage模型应用组件 1. 应用级配置2. Module级配置3. Stage模型的组件3.1 AbilityStage3.1.1 AbilityStage的创建和配置3.1.2 AbilityStage的生命周期回调3.1.3 AbilityStage的事件回调&#xff1a; 3.2 UIAbility3.2.1 UIAbility生命周期3.2.3 UIAbility启动模…

mysql INSERT数据覆盖现有元素(若存在)

INSERT...ON DUPLICATE KEY UPDATE的使用 如果指定了ON DUPLICATE KEY UPDATE&#xff0c;并且插入行后会导致在一个UNIQUE索引或PRIMARY KEY中出现重复值&#xff0c;则会更新ON DUPLICATE KEY UPDATE关键字后面的字段值。 例如&#xff0c;如果列a被定义为UNIQUE&#xff0…

P1226 【模板】快速幂题解

题目 给你三个整数a,b,p&#xff0c;求 mod p。 输入输出格式 输入格式 输入只有一行三个整数&#xff0c;分别代表a,b,p。 输出格式 输出一行一个字符串a^b mod ps&#xff0c;其中a,b,p分别为题目给定的值&#xff0c;s为运算结果。 输入输出样例 输入样例 2 10 9 …

三角函数、反三角函数

一、三角函数 二、反三角函数&#xff1a;已知三角函数值&#xff0c;反算角度大小 因为严格单调函数才有反函数一个y对应一个x&#xff0c;显然ysinx&#xff0c;ycosx&#xff0c;ytanx在其定义域并不是严格单调&#xff0c;所以需要人为划定范围。 1. 研究yarcsinx、yarcco…

第十六回 花和尚单打二龙山 青面兽双夺宝珠寺-FreeBSD基本操作:查找程序和文件的路径

杨志最终没有跳崖而是怅然下了冈子。那十四个人醒来&#xff0c;后悔没有听杨志的话&#xff0c;现在事情已经发生了&#xff0c;大家只好商量把所有的错推到杨志身上&#xff0c;说他和强盗合伙劫了生辰纲。 杨志到酒店吃酒没钱付账&#xff0c;跟店家打起来&#xff0c;却原…

编写nginx脚本,安装失败

这是我写的nginx脚本-&#xff08;正确的&#xff0c;已经修改过的&#xff09; 这是我在运行脚本是出现的问题 这是我在nginx官网上粘贴的内容&#xff0c;请注意我用红笔画的地方&#xff0c;与第一张我写的脚本图片作对比&#xff0c;会发现多出现两个转义符号\。第二幅图就…

mysql连接查询,备忘

mysql连接查询 在MySQL数据库查询中&#xff0c;经常会使用到多表查询&#xff0c;本篇介绍mysql中的内连接&#xff0c;左连接&#xff0c;右连接。 用作备忘。 使用两个简单的数据表做展现。 表A AidAvalue1a0012a0023a0034a0045a005 表B BidBvalue1b0012b0023b0034b0046b…

Acwing-语法基础练习

目录 1. 非常基础的C (面向程序) 框架 2. 一些基础数据类型 3.变量的输入输出 4.ACWing题库-第1题&#xff1a;AB 5.四则运算(只整理一部分较难的) 6.数据类型转换 寒假自学用,记录Acwing题目。 语言&#xff1a;C 1. 非常基础的C (面向程序) 框架 #include <iostre…