Symbianize Forum

Most of our features and services are available only to members, so we encourage you to login or register a new account. Registration is free, fast and simple. You only need to provide a valid email. Being a member you'll gain access to all member forums and features, post a message to ask question or provide answer, and share or find resources related to mobile phones, tablets, computers, game consoles, and multimedia.

All that and more, so what are you waiting for, click the register button and join us now! Ito ang website na ginawa ng pinoy para sa pinoy!

College of COMPUTER STUDIES (INFORMATION TECHNOLOGY students,ACE,CS,etc) welcome po!

Re: mga INFORMATION TECHNOLOGY students dyan! eto ang tambayan natin!

ako I.T instructor
 
Re: mga INFORMATION TECHNOLOGY students dyan! eto ang tambayan natin!

ano po ba pinagkaiba ng C at C++?
ung dev-C++ ba pwedeng gamitin magcode ng programs na naka C? o kailangan ko pa mag dl ng ibang compiler? :salute:
bale gusto ko po kasi mag aral ng programming. ano po ba maipapayo nyo? :))
 
Re: mga INFORMATION TECHNOLOGY students dyan! eto ang tambayan natin!

Good am mga kapwa IT :cool:
 
Re: mga INFORMATION TECHNOLOGY students dyan! eto ang tambayan natin!

Good am mga kapwa IT :cool:

Good morning ate Xirukitepe, bisita ka na sa thread mo, madami na questions, kasama na ko 'dun. I'm still waiting for your reply e.

Thanks. :)
 
Re: mga INFORMATION TECHNOLOGY students dyan! eto ang tambayan natin!

d2 pla mga i.t. A..aus to
 
Re: mga INFORMATION TECHNOLOGY students dyan! eto ang tambayan natin!

may pagkakaiba ba ang MIT sa IT na course? MIT kasi ako this year
 
Re: mga INFORMATION TECHNOLOGY students dyan! eto ang tambayan natin!

hi guys.. graduate na siguro tong gumawa ng thread..heh..
im 3rd year college it students..
 
Re: mga INFORMATION TECHNOLOGY students dyan! eto ang tambayan natin!

hi guys.. graduate na siguro tong gumawa ng thread..heh..
im 3rd year college it students..

nope..still in 3rd year palang po..e almost mga questions dito puro nung 1st year ko pa nitake up kaya limut ko na..focus on PHP for my thesis..wew...enjoy your stay here!

d2 pla mga i.t. A..aus to

enjoy ka dito dre!

Good am mga kapwa IT :cool:

good morning! :D


sorry kung minsan nalang po ako makapagpost dito sa thread ko..busy pa po kase eh...!
 
Re: mga INFORMATION TECHNOLOGY students dyan! eto ang tambayan natin!

patulong po. a program that will convert a number to words without using modulus in turbo c .

FINAL PROJECT PO NAMIN!
kaya lang sana pero kung pwedeng gumamit ng modulus.

SALAMAT PO NG MARAMI! PLEASE PO! :pray:
 
Re: mga INFORMATION TECHNOLOGY students dyan! eto ang tambayan natin!

may pagkakaiba ba ang MIT sa IT na course? MIT kasi ako this year

MIT po ung kinuka ng mga IT graduate
masteral po iyon...
MIT=master
BSIT=bachelor

check me if im wrong
 
Re: mga INFORMATION TECHNOLOGY students dyan! eto ang tambayan natin!

MIT po ung kinuka ng mga IT graduate
masteral po iyon...
MIT=master
BSIT=bachelor

check me if im wrong

MIT siya ngayon?

Pano po nangyari yon? MIT na siya pero di alam ang pinagkaiba ng MIT at IT. Baka iba yun. Subject? :lol:
 
Re: mga INFORMATION TECHNOLOGY students dyan! eto ang tambayan natin!

MIT siya ngayon?

Pano po nangyari yon? MIT na siya pero di alam ang pinagkaiba ng MIT at IT. Baka iba yun. Subject? :lol:

siguro hahaha
baka MIS ung tinutukoy nun dre...
 
Re: mga INFORMATION TECHNOLOGY students dyan! eto ang tambayan natin!

1. Create an application program in VB.Net that would input an INTEGER and display in the format shown below. Example, if 5 was entered then it would display:

55555
4444
333
22
1
============================

2. Create an application program that would ask the user an integer and would and display in the format shown below. Example, if 5 was entered then it would display:

&
#
$
#
$

===================================
3. Create an application that asks a user to input an integer and display in the format shown below. Example, if 5 was entered then it would display:

*****
$$$$
***
$$
*

=======================================
4. Create an application that would ask a user to input an integer and display in the format shown below. Example, if 5 was entered then it would display:

1
1
2
3
3
6
4
10
5
15
=============================

patulong nman sa pagsagot nalilito na tlga ako d2 mga sir salamat

may sagot ako sa #1

e2 po sagot ko sa one (di ko na po sinama d2 ung public class at private sub )

Dim x,y as integer
Dim sama as string
listbox1.items.clear
for x= 5 to 1
sama=""
for y= 1 to x
sama = sama & str (y)
next y
listbox1.items.add (sama)
next x


tama po ba ?

salamat sa tutulong saken ng marami
 
Re: mga INFORMATION TECHNOLOGY students dyan! eto ang tambayan natin!

PATULONG NAMAN PO..
Pano ko po ipapasok yung basic programming for bubble sorting using Singly Linked List? :help:
Code:
Singly Linked List


#include <iostream>
#include <iomanip>
using namespace std;

struct node{
    int data;
    node *next;
}*head;

void createlist(int);
void display();

int main()
{
    while(1)
    {
        int choice;
        system("cls");
        cout << "[1] - Create a list\n";
        cout << "[2] - Display\n";
        cout << "[9] - Exit\n";
        cout << "===================\n";
        cout << "Enter your choice: ";
        cin >> choice;
        int n, num, pos;
        switch(choice){
            case 1:
                cout << "\nHow many node you want: ";
                cin >> n;
                cout << "\nEnter " << n << " element(s)\n";
                for(int i=0;i<n;i++)
                {
                    cin >> num;
                    createlist(num);
                }
                display();
                break;
            case 5:
                display();
                break;
            case 9:
                exit(1);
            default:
                cout << "\nWrong choice!\n";
        }
        cout << endl;
        system("pause");
    }    
    return 0;
}

//creation
void createlist(int n)
{
    node *p, *tail;
    tail = new node;
    tail->data = n;
    tail->next = NULL;
    if(head==NULL)
        head=tail;
    else
    {
        p=head;
        while(p->next!=NULL)
            p=p->next;
        p->next = tail;
    }
}


//display
void display()
{
    node *p;
    if(head==NULL)
    {
        cout << "List is empty!\n";
        return;
    }
    p=head;
    cout << endl;
    cout << setw(20) << "POINTER" << setw(20) << "DATA" << setw(20) <<
"NEXT" << endl;
    while(p!=NULL)
    {
        cout << setw(20) << p << setw(20) << p->data << setw(20) << p->next << endl;
        p = p->next;
    }
    cout << endl;
}
Code:
//BASIC PROGRAMMING APPROACH

#include<iostream>
using namespace std;
int main()
{
       int n, a[10];
       cout<<"Enter number of elements in an array: ";
       cin>>n;
       cout<<"Enter " <<n <<" elements: ";
       for(int i=0;i<n;i++)
              cin>>a[i];
       cout<<"Array elements before sorting\n\n";
       cout<<"\tINDEX" <<"\tVALUE"<<endl;
       for(int i=0;i<n;i++)
               cout<<"\t["<<i <<"]"<<"\t"<< A[i] <<endl;

       for(int i=n;i>l;i--)
                for(int j=0;j<i-1;j++)
                             if(a[j] > a[j+l])
                             {
                                      int swap= a[j];
                                      a[j] = a[j+l];
                                      a[j+l] = swap;
                             }
       cout<<"\nArray elements after sorting\n\n";
       cout<<"\tINDEX" <<"\tVALUE"<<endl;
       for(int i=0;i<n;i++)
               cout<<"\t["<<i <<"]"<<"\t"<< A[i] <<endl;

       system("pause>0");
       return 0;
}
 
Re: mga INFORMATION TECHNOLOGY students dyan! eto ang tambayan natin!

pah subscribe dito ..
 
Re: mga INFORMATION TECHNOLOGY students dyan! eto ang tambayan natin!

p help naman po ako ! make a program like 'WHO WANTS TO BE A MILLIONAIRE' using JAVA :( , sana po my makatulong sa akin, FINALS PROJECT po kasi eh this SEM. please po
 
Re: mga INFORMATION TECHNOLOGY students dyan! eto ang tambayan natin!

p help naman po ako ! make a program like 'WHO WANTS TO BE A MILLIONAIRE' using JAVA :( , sana po my makatulong sa akin, FINALS PROJECT po kasi eh this SEM. please po

JOptionPane na lang po gamitin mo.
 
Back
Top Bottom