tenzin:
please anybody tell e logic to apply to run two and more for loop to be run simultaneously at one time i mean to run all for loop at a same time...
The trick is only to do one step of each action at any time. Don't use FOR. Use a counter variable to keep track of where you are and allow loop() to do the iteration.
You're working with the same variable (angle) in both for loops ... the angle increments from 0 to 180, then in the second for loop it decrements from 180 to 0.
You say you want to run them simultaneously. Well, if you increment, then decrement it won't work. If you manage to accomplish the "angle" sequence above, then you'll end up with the same thing in terms of response , but your code might be simpler.
If the problem is really something wrong with how responsive your code is, then the culprit is the 360 delay(10) statements that run for each loop iteration. Your loop speed is like a turtle (3.6 seconds+)
Consider using the millis() timer to replace the delays. Check out the blink without delay example and others on how to do this.