Skip to content

Instantly share code, notes, and snippets.

View 08shubhamjindal's full-sized avatar
💭
Imbalanced to the Leaf Nodes!🤔🤔

Shubham Jindal 08shubhamjindal

💭
Imbalanced to the Leaf Nodes!🤔🤔
View GitHub Profile
#include<bits/stdc++.h>
using namespace std;
int main(){
int listofusers[6] = {1,2,3,4,5,6};
int v[7][7] = {0};
int t;
cin>>t;
while(t--){
int paidByUserId,amountPaid,countofIdWhoOws;
<?php
ob_start();
session_start();
?>
<?
// error_reporting(E_ALL);
// ini_set("display_errors", 1);
?>
@08shubhamjindal
08shubhamjindal / form.php
Created September 15, 2016 13:52
contact form using of php
<html>
<head>
<title>form</title>
</head>
<body>
<?php
$title = $_POST['title'];
$name =$_POST['name'];
$response = $_POST['response'];
$comments = $_POST['comments'];
@08shubhamjindal
08shubhamjindal / bank.java
Last active July 31, 2020 11:04
a java program of bank that have deposit withdrawl loan procedure
import java.util.Scanner;
class bank
{
public static void main(String[] r)
{
Scanner s = new Scanner(System.in);
System.out.println("enter the name");
String a;
a=s.nextLine();
System.out.println("enter the phone no");
@08shubhamjindal
08shubhamjindal / game1.php
Created September 11, 2016 20:45
redirect of one page to another page
<html>
<head>
<title>PHP Form with redirect of one page to another page </title>
</head>
<body>
<?php
$name = $email = $gender = $comment = $website = "";
@08shubhamjindal
08shubhamjindal / game.php
Last active September 11, 2016 19:49
post method in php
<html>
<head>
<title>PHP Form Validation</title>
</head>
<body>
<?php
$name = $email = $gender = $comment = $website = "";
if ($_SERVER["REQUEST_METHOD"] == "POST") {