首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >用ABAP代码实现从1累加到100

用ABAP代码实现从1累加到100

作者头像
Jerry Wang
发布2020-01-21 11:08:44
6370
发布2020-01-21 11:08:44
举报
itab = VALUE #( FOR j = 1 WHILE j <= 100 ( j ) ).
* Reduce 后面跟类型
* A constructor expression with the reduction operator 
* REDUCE creates a result of a data type specified using type 
* from one or more iteration expressions.
* At least one variable or one field symbol must be specified. The variables or field symbols declared after 
* INIT can only be used after NEXT. 
* At least one iteration expression must then be specified using FOR and it is also possible to specify multiple 
* consecutive iteration expressions.
DATA(sum) = REDUCE i( INIT x = 0 FOR wa IN itab NEXT x = x + wa ).
WRITE: / sum.
本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2020-01-16 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档