C Programming Tutorial 28 3.Number Pattern

preview_player
Показать описание


Follow on Facebook:

Subscribe to our other channel:
Telusko Hindi :
Рекомендации по теме
Комментарии
Автор

wow... please upload more videos... thanks... its was very helpful... your voice gives more power to this video... thank you

amitojhahandsomehunk
Автор

Sir no words your the best👍💯 I have been searching YouTube for hours for a proper video stressing on the logic and thankfully you came up !

pavikutty
Автор

thanks a lot sir, perfectly explained 👍👍

SmartProgramming
Автор

Sir what is first video in printing pattern plz tell me

madhavikatta
Автор

It's very easy to understand. Thank you sir

kowsalyak
Автор

public class pattern_program {
public static void main(String[] args) {
int i, j;
for ( i = 1; i <= 5; i++){
for ( j = i; j <= 5; j++)
System.out.print(j+" ");

for (j = 1; j < i; j++)
System.out.print(j+" ");

System.out.println();
}
}
}

akshaysalekar
Автор

Can u please give the same example in c++?

AutumnsWitch
Автор

Sum of digits row pattern
N=5, x=6
Output is

25252
16161
15151
13131

Pls post code sir

rajasriraja
Автор

Nice video help full to me thx for making these Video

akarshitsingh
Автор

👍👍Sir voice is similar to my friend voice👌

kalyanappanaboina
Автор

Sir I'm not understanding this staff I am beginner

orva_
Автор

1 2 3 4
2 4 6 8
3 6 9 12
4 8 12 16
Sir how to write this pattern ...

nikhilkopparapu
Автор

can anyone tell how to print this type of pattern
333
313
323
333

sangeetham.d
Автор

How to print this patterns
123
456
789

kiranjoshi