Write a program to print the following
pattern.
RGUKT 1 – 1 2 3 4 5
RGUKT 2 –1 2 3 4 5
RGUKT 3 –1 2 3 4 5
RGUKT 4 –1 2 3 4 5
RGUKT 5 –1 2 3 4 5
Answers
Answered by
0
Answer:
i am a c# developer so i will write in that format.... if you want java or c/c++
message me..
using systems.collections;
public Class ShowPattern(){
public static void main(){
for(int i=1; i<=5; i++){
print("RGUKT"+i+"-12345");
}
}
}
Similar questions