├── ram ├── readme.md ├── hello └── hashtag ├── OneDrive └── Pictures │ └── Desktop │ ├── reposi │ └── intro │ ├── localrepo │ └── hello │ └── github │ └── hi ├── style.css ├── krish └── fut ├── readme.md └── readme.md ├── bajarang ├── quote ├── chotu └── echo ├── Welcome.java └── Mult.java /ram/readme.md: -------------------------------------------------------------------------------- 1 | # this is my repo # -------------------------------------------------------------------------------- /OneDrive/Pictures/Desktop/reposi/intro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- 1 | p{ 2 | color:red; 3 | } -------------------------------------------------------------------------------- /krish/fut: -------------------------------------------------------------------------------- 1 | wonk tnod i; 2 | tuoba ym erutuf -------------------------------------------------------------------------------- /readme.md/readme.md: -------------------------------------------------------------------------------- 1 | # this is a sample repo -------------------------------------------------------------------------------- /bajarang: -------------------------------------------------------------------------------- 1 |
2 | JAI SHREE RAM 3 |
4 | bajarang -------------------------------------------------------------------------------- /OneDrive/Pictures/Desktop/localrepo/hello: -------------------------------------------------------------------------------- 1 | # demo file 2 | -------------------------------------------------------------------------------- /ram/hello: -------------------------------------------------------------------------------- 1 |
2 | practice 3 |
4 | seeta 5 | 6 | "hello" 7 | -------------------------------------------------------------------------------- /quote: -------------------------------------------------------------------------------- 1 | #the magic you are looking for is in things you aren't doing# 2 | -------------------------------------------------------------------------------- /OneDrive/Pictures/Desktop/github/hi: -------------------------------------------------------------------------------- 1 |

hello world

2 | author :taruni -------------------------------------------------------------------------------- /chotu/echo: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |

my first heading

6 |

my first paragraph

7 | 8 | 9 | -------------------------------------------------------------------------------- /Welcome.java: -------------------------------------------------------------------------------- 1 | class Welcome{ 2 | public static void main(String[]args){ 3 | System.out.println("hi there" + args[0]); 4 | } 5 | } -------------------------------------------------------------------------------- /ram/hashtag: -------------------------------------------------------------------------------- 1 | #if my sister becomes a doctor in future she will buy me a car(which can driven by people,my choice) --said by deepa yadav# 2 | #if my sister becomes a doctor in future she will buy me a car(which can driven by people,my choice) (24/12/2023)# -------------------------------------------------------------------------------- /Mult.java: -------------------------------------------------------------------------------- 1 | 2 | class Mult{ 3 | public static void main(String[]args){ 4 | int a=Integer.parseInt(args[0]); 5 | System.out.println("multiplication table for "+a+" is:"); 6 | for (int i=1;i<=10;i++){ 7 | System.out.println(a+ "*" +i+ "=" +(a*i) ); 8 | } 9 | } 10 | } --------------------------------------------------------------------------------