JAVA//For-Loop - More Exercises//09. Clock//
Здравейте! Някой може ли да прати решение? Благодаря предварително!
Здравейте! Някой може ли да прати решение? Благодаря предварително!
Използват се два вложени for цикъла - един за часовете (0-23) и един за минутите (0 - 59), като отпечатването на резултата е във вътрешния цикъл (т.е. за всяка минута):
public class Clock {
public static void main(String[] args) {
for (int hours = 0; hours < 24; hours++) {
for (int minutes = 0; minutes < 60; minutes++) {
System.out.println(hours + " : " + minutes);
}
}
}
}
Your article is very useful, the content is great, I have read a lot of articles, but for your article, it left me a deep impression, thank you for sharing. basketball legends
Сърдечно благодаря! А защо по този начин принтираме:
Защо : е в кавички? И няма ли как без тези плюсове и кавичките да принтираме?
https://www.javatpoint.com/string-concatenation-in-java
String Concatenation in Java
In java, string concatenation forms a new string that is the combination of multiple strings. There are two ways to concat string in java:
1) String Concatenation by + (string concatenation) operator
Java string concatenation operator (+) is used to add strings. For Example:
In java, String concatenation is implemented through the StringBuilder (or StringBuffer) class and its append method. String concatenation operator produces a new string by appending the second operand onto the end of the first operand. The string concatenation operator can concat not only string but primitive values also. For Example:
2) String Concatenation by concat() method
The String concat() method concatenates the specified string to the end of current string. Syntax: