answersLogoWhite

0

public class Address

{

System.out.println(" The Address of Study Center is A-135, Model town")

}

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

Write an assembly language program to print a to z on screen?

write a program to print A to Z on screen in c?


Write a unix program to print print a pattern?

echo 'print a pattern'


How do we write a program to print your name age address using read data statement in QBASIC?

In QBASIC, you can use the INPUT statement to read data for your name, age, and address. Here's a simple program example: DIM name AS STRING DIM age AS INTEGER DIM address AS STRING INPUT "Enter your name: ", name INPUT "Enter your age: ", age INPUT "Enter your address: ", address PRINT "Name: "; name PRINT "Age: "; age PRINT "Address: "; address This program prompts the user to enter their name, age, and address, then prints the collected information.


Write a java script program to print first ten odd natural numbers in C?

Q.1 Write a program to print first ten odd natural numbers. Q.2 Write a program to input a number. Print their table. Q.3 Write a function to print a factorial value.


What is the web address of the International Print Center Ny in New York New York?

The web address of the International Print Center Ny is: http://www.ipcny.org


Write a C program to print the following series 112 122 . 1n2?

write a program to print the series 1/12+1/22+.........+1/n2 ?


Write a program to print the sum of a sparse matrix?

This is a directive, not a question.


Can you Write a program in 'c' to print symbols of playing cards?

Yes.


Write a c program to print roman letters?

good morning


Q2 Write a program to print even numbers between 10 and 50?

You can use int i; for (i = 10; i <= 50; i += 2) {//print i} as a program to print even numbers between 10 and 50.


Write c program to print?

include <stdio.h> int main (void) { puts ("print"); return 0; }


Write a C Program to print sum of squares of odd numbers?

#include