Java String类 这题啥意思啊,题目都不懂呢。。。

利用String类拼写如下的字符串(1)int[]x={19,20,22,26,29,30,70,80,90};“selectod_idfromt_odwherestat... 利用String类拼写如下的字符串
(1)int [ ] x = {19,20,22,26,29,30,70,80,90};
“select od_id from t_od where station_num = 19 or station_num = 20 … or station_num = 90”
(2) “select od_id from t_od where station_name = ‘ 西直门’or station_name = ‘ 中关村’or station_name = ‘ 国贸’
展开
 我来答
zhangqi0192
2014-11-29 · TA获得超过2388个赞
知道大有可为答主
回答量:1417
采纳率:0%
帮助的人:1229万
展开全部
你好 代码如下 :
1. String str="";
for(int i =0i<x.length;i++){
str+=x[i];
}
System.out.print(str);

2. String a = "西直门";
String b ="中关村";
String c = "国贸";
String sql="select od_id from t_od where station_name ='"+a+"' or station_name ='"+b+"' or station_name='"+c+"'";
希望能帮到你 谢谢
之卿飞B
2014-11-29 · TA获得超过1015个赞
知道小有建树答主
回答量:1086
采纳率:80%
帮助的人:520万
展开全部
int[] x = { 19, 20, 22, 26, 29, 30, 70, 80, 90 };
// “select od_id from t_od where station_num = 19 or station_num = 20 …
// or station_num = 90”
String sql = "select od_id from t_od where 1=1 ";
for (int i = 0; i < x.length; i++) {
sql += " or station_num=" + x[0];
}
System.out.println(sql);
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式