+ 1
Write a python program to print your name 5 times using “while “loop (2)
8 Respostas
+ 1
This print name infinite times
0
This does print name infinite times
0
Python program for remainder
- 1
a=input("Enter your name:")
b=1
while b<=5:
print(a)
b=b+1
- 3
i=0
while i<5:
print("your name")
i+=1
#indent yourself
- 3
#include<stdio.h>
void main()
{
char b[80];
int a=1;
scanf ("%c",&b);
while (a<=5)
{
printf("%s\n",b);
a=a+1;
}
}
- 4
How to print ur name 10 times using while loop
- 4
i=0
while i<5:
print("your name")
i+=1
#indent yourself