作业帮 > 综合 > 作业

定义3个数值,将A,B数值中的数据相加放在C数值中,并显示,数据A,B,C中各元素的值

来源:学生作业帮 编辑:拍题作业网作业帮 分类:综合作业 时间:2024/06/03 20:00:01
定义3个数值,将A,B数值中的数据相加放在C数值中,并显示,数据A,B,C中各元素的值
什么语言写?int a=1;int b=2;int c=3; response.write(a.tostring()); response.write(b.tostring()); c=a+b; response.write(c.tostring());