• 回答数

    2

  • 浏览数

    267

青青园中葵me
首页 > 英语培训 > 接收用户英文

2个回答 默认排序
  • 默认排序
  • 按时间排序

食尚峰汇

已采纳

import java.util.Scanner;public class A04 { public static void main(String args[]) { System.out.println("请输入字符串:"); String s = new Scanner(System.in).next(); System.out.println("输出结果:"); for (char c : s.toCharArray()) { if (c >= 'a' && c <= 'z') { c -= 32; } else if (c >= 'A' && c <= 'Z') { c += 32; } System.out.print(c); } }}

接收用户英文

247 评论(10)

1点点葵

“收到”的英语单词:receivev.接收;收到;接到;拿到;体验;受到(某种待遇或伤害);对?作出反应。〔辨析〕指主观上接受或同意建议、邀请等;也指认为某人或某物足够好而接受。〔例证〕Johnacceptedtheinvitationtotheparty.约翰接受了参加晚会的邀请。Shereadilyacceptedthatsmallgift.她欣然接受了那份小礼物。Thepublisheracceptedthebookforpublication.出版商同意出版这本书。

282 评论(15)

相关问答