hgn330 💋🍓
Open in Telegram
Projects with source code | Android | java |website development | Website : https://updategadh.com Admin https://t.me/Rishabhsaini0204 New project https://www.youtube.com/c/decodeit2 Buy ads: https://telega.io/c/projectswithsourcecode
Show more4 310
Subscribers
No data24 hours
-587 days
-28130 days
Posts Archive
4 310
Site Live!
So I have completed my website! (Hosting Done, Domain Done) Payment Option (Not done ) |
******************************************************
{ if you want start selling your project like I do just make a website like I made}
OR
if any one want to buy this site with hosting and domain name
just DM (Check Bio)
****************************************************
Website link ->http://projectwithsourcecode.tech/
4 310
😍😍😍😍😍😍😍😍😍😍😍😍If you need any projects in any language (java, html, javascript, css, android, web, cpp,c,college mini projects, any projects)
just Dm me (Check my bio)!❤️❤️❤️❤️❤️
4 310
1st time I speak in English while recording video 😅😅I am so happy to do new task ,speaking in English while recording the video,
वरना तो हिंदी भी बहुत अच्छी है और English भी बहुत अच्छी है But ज्यादा मजा हिंदी बोलने में ही आता है
,○○○○○○○○○○○○○○○○○○
वैसे जब आपने BIO चेकिंग कर लिया तो Follow कर लेना Subscribe भी कर देना😘😘
github :- https://lnkd.in/gKptrhN
Profile:- https://lnkd.in/gcgEgqh
Youtube:- https://lnkd.in/gVDqPCjm
YouTube(Projects):
https://lnkd.in/g-2hXEX2
telegram:- https://lnkd.in/g965vNZZ
Instagram:- https://lnkd.in/g8ZKngXg
●●●●●●●●●●●●●●●●●●●
and finally I have completed my website now only hosting task is left..
#project #github #website #design #wordpresswebsite
4 310
Started new YouTube channel
(I NEED A PARTNER FOR THIS CHANNEL) INTERESTED JUST DM [💥Check BIO💥]
💪💪💪💪💪💪
https://youtu.be/WSr_8jMj9KQ
4 310
I am searching for a partner for YouTube channel (Coding related)▶️▶️🔥
4 310
This is the Test Mode of my website .it will be published on the internet on (16 Aug 2021). If everything will be fine.
github ->https://lnkd.in/gKptrhN
Profile-> https://lnkd.in/gcgEgqh
Youtube->https://lnkd.in/gt_kg6JY
telegram->https://lnkd.in/g965vNZZ
Instagram->https://lnkd.in/g8ZKngXg
#project #github #website #design #wordpresswebsite
4 310
I am going to publish my website Soon | This is the home page of my website till will be published on the internet on (16 Aug 2022). If everthing is fine .
github ->https://github.com/Rishabhsaini0204
Profile-> https://rishabhsaini0204.github.io/profile.github.io/
Youtube->https://youtube.com/c/Rishabhsaini
telegram->https://telegram.im/ProjectsWithSourceCode
Instagram->https://instagr.am/Rishabhsaini016
Note -> I need help also. I want to make the box size (Project box) equal but not working .so just ignore the size of the box on projects DIV
#project #github #marketing #webdesign #projects #wordpress #websitedesign #webdevelopment #website #design #graphicdesign #animation #digitalmarketing #intership #webdesigner #html #css #js #wordpresswebsite
4 310
✊I AM GOING TO CREATE MY OWN WEBSITE(html, css,is, reacts , not using Bootstrap )✊
💻SOON IT WILL BE PUBLISHED 💻
4 310
💥LOGIN PAGE IN JAVA (NO SQL AND DATABASE)!💥
✊SIGNUP @ND login with authentication ✊
-------------Try This code---------------
import java.util.*;
class Login
{
private static String name;
private static String password;
private static String mName;
private static String mPassword;
private static int age;
public static void main(String args[])
{
System.out.println("Enjoy the Code !Follow on telegram and subscribe YouTube(Coming on 16 aug)";
initialize();
}
private static void SignUp(){
Scanner sc = new Scanner(System.in);
System.out.println("\n\nSIGN UP\n");
System.out.println("Hello there, new user! \nPlease tell your name.");
name = sc.nextLine();
System.out.println("For your further security\nplease Set your password");
password = sc.nextLine();
System.out.println("Wonderful! Whats your age?");
age = sc.nextInt();
System.out.println("Cool!");
System.out.println("\n\nYoure now signed up!\n Please login now!\n\n");
initialize();
}
private static void Login(){
System.out.println("\n\nLOGIN\n");
Scanner sc = new Scanner(System.in);
System.out.println("Hello, whats your name ");
mName = sc.nextLine();
if(mName.equals(name)){
System.out.println("Oh, yes! Almost forgot. Hello, " + name);
System.out.println("Please enter your password");
mPassword = sc.nextLine();
if(mPassword.equals(password)){
System.out.println("\n\nPROFILE");
System.out.println("\nYour name is "+name);
System.out.println("Your password is "+password);
System.out.println("Your age is "+age);
}else{
System.out.println("\nWrong password \nPlease try again");
Login();
}
}else{
System.out.println("\nSorry, I dont remember you. \nHave you signed up?");
initialize();
}
}
private static void initialize(){
Scanner sc = new Scanner(System.in);
System.out.println("Login or Signup? \n\nIf Login press 1\nIf Signup press 2");
int input = sc.nextInt();
if(input == 1){
Login();
}else{
SignUp();
}
}
}
4 310
MAx And Mini Element in Array Using C++
#include <bits/stdc++.h>
using namespace std;
#define ll long long
pair<long long, long long> getMinMax(long long a[], int n) ;
int main() {
int t;
cin >> t;
while (t--)
{
int n;
cin >> n;
ll a[n];
for (int i = 0; i < n; i++)
cin >> a[i];
pair<ll, ll> pp = getMinMax(a, n);
cout <<"MIN="<< pp.first << " " <<"MAX="<< pp.second << endl;
}
return 0;
}
pair<long long, long long> getMinMax(long long a[], int n) {
ll mn =1e18, mx = 0;
for (int i = 0; i < n; i++) {
mn = min(a[i], mn);
mx = max(a[i], mx);
}
return {mn, mx};
}
