📅  最后修改于: 2022-03-11 14:52:10.094000             🧑  作者: Mango
class Main
{
// Iterate over the characters of a string
public static void main(String[] args)
{
String s = "Techie Delight";
// using simple for-loop
for (int i = 0; i < s.length(); i++) {
System.out.print(s.charAt(i));
}
}
}