Business Infotech

Business Infotech

Share

Do as IT says not as IT do. Business Infotech is a web design, development and web-based application development outsourcing service provider company.

Photos from Business Infotech's post 22/03/2014
16/03/2014

/*input two number and caluate their sum difference product division and remainder
and remainder valueand display the result. */
========================================


void main()
{
int i;
float a,b;
int c,d;
printf("enter the value of two number\n");
scanf("%f%f",&a,&b);
printf("1-:sum\n2-:subtract\n3-:multipcation\n4-:divison\n5-:remainder\n");
printf("enter your choice nummber-:\n");
scanf("%d",&i);
switch(i)
{
case 1:
printf("the sum of two number=%f",a+b);
break;
case 2:
printf("the subtract of two number =%f",a-b);
break;
case 3:
printf("the multiplication of two number =%f",a*b);
break;
case 4:
printf("the division of two number =%f",a/b);
break;
case 5:
c=a;
d=b;
printf("the remainder of two number=%d",c%d);
break;
default:
printf("wrong choice");
}
}

12/03/2014

Convert Characters to Lower Case
===================================
public class ToLower {

public static void main(String[] args) {
String str = "KeepPrograMMing";

str = str.toLowerCase();

System.out.println(str);
}
}

07/03/2014

Tic-Tac-Toe In C++ .
Playing Technique Enter Your position To Display Your Mark (0/x)

==========================================

char square[10] = {'o','1','2','3','4','5','6','7','8','9'};
int checkwin();
void board();

int main()
{
int player = 1,i,choice;

char mark;
do
{
board();

player=(player%2)?1:2;

cout

07/03/2014

How To Find The path And Get The Information About Files.



=========================================

import java.io.File;

public class MainClass {

public static void main(String[] args) {

File absolute = new File("/public/html/javafaq/index.html");
File relative = new File("html/javafaq/index.html");

System.out.println("absolute: ");
System.out.println(absolute.getName());
System.out.println(absolute.getPath());

System.out.println("relative: ");
System.out.println(relative.getName());
System.out.println(relative.getPath());
}
}

Want your business to be the top-listed Computer & Electronics Service in Baramati?
Click here to claim your Sponsored Listing.

Telephone

Address


Baramati
413102

Opening Hours

Monday 10am - 5pm
Tuesday 10am - 5pm
Wednesday 10am - 5pm
Thursday 10am - 5pm
Friday 10am - 5pm
Saturday 10am - 5pm
Sunday 10:45am - 2pm