0
How I can create step count using java languague can someone please help me
3 Antworten
0
int stepCount = 0;
for (int i = 1; i<=5; i++){
stepCount +=1;
}
System.out.println(stepCount);
0
Thank you so much for your help I will definitely try your code
0
Happy coding!