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!

Recent content by Pumupuso

  1. P

    All about programming (Specially c, c++, VB, Java)

    Hindi pa ako marunong ng Java. Guide na lang. C language. Madali lang yan. #include<stdio.h> #include<conio.h> int main(){ int N, ctr, fac = 0;/*N yung number, ctr para sa loop at factors, fac naman para sa number ng factors excluding 1 at yung number itself*/ printf("Input an integer value...
  2. P

    All about programming (Specially c, c++, VB, Java)

    KUYA, eto na XD Paki-copy-paste at compile na lang po. Tignan nyo po kung tama.
  3. P

    All about programming (Specially c, c++, VB, Java)

    Wow. LRT. Beginner pa lang po ako pero baka matulungan kita dyan. Ano po ba yung pinaka-description ng program nyo? Hanggang typedef, enum at konting file handling pa lang po alam ko.
  4. P

    All about programming (Specially c, c++, VB, Java)

    San galing yung mga numbers??? Ano input?
  5. P

    All about programming (Specially c, c++, VB, Java)

    PUP-CCIS rocks. Hahaha. Case study #4 yan eh XD Gumamit ako ng string.h para sa strlen() pero kahit wala na rin. Tapos yung if and else if para sa mga conditions. Good luck. Baka kaklase rin kita kay Sir Igue? Maraming pwedeng solution pero yung pinakamasalimuot yung ASCII code. Medyo mahaba yan...
  6. P

    All about programming (Specially c, c++, VB, Java)

    /* Hi! Eto na. . . Eto na. Eto na! Kani-kanina lang ako nag-online pero sana mabasa mo 'to agad. C pa lang tinuturo sa amin pero almost the same lang naman yung C at C++ kaya inapply ko yung mga natutuhan ko. Yung pagkakamali mo lang ay ginawa mong character yung 10 - 15(2 characters kasi yun...
  7. P

    All about programming (Specially c, c++, VB, Java)

    Sa C: #include<stdio.h> #include<conio.h> #include<string.h> #include<ctype.h> int main(){ char str[99]; int count; printf("Enter a string: "); gets(str); for(count = strlen(str) - 1; count >= 0; count--){ if (str[count] == 'a' || str[count] == 'e' || str[count] == 'i' || str[count] ==...
  8. P

    All about programming (Specially c, c++, VB, Java)

    Re: pa help po(Specially c, c++, Java) Mali naman eh. Puro syntax error! Inayos ko "1Done!" yung output :P Eto kasi yun XD #include<stdio.h> #include<conio.h> #include<iostream> int print(int x){ if(x <= 100){ std::cout << x << std::endl; print(x + 1); } } int main(){ int x = 1; print(x)...
  9. P

    All about programming (Specially c, c++, VB, Java)

    Re: pa help po(Specially c, c++, Java) Sa C: #include<stdio.h> #include<conio.h> int print(int x){ if(x <= 100){ printf("%d\n", x); print(x + 1); } } int main(){ int x = 1; print(x); getch(); } Sa C++: Ewan.
  10. P

    All about programming (Specially c, c++, VB, Java)

    Try ko yan. C language nga lang.
  11. P

    All about programming (Specially c, c++, VB, Java)

    Re: pa help po(Specially c, c++, Java) C language: #include<stdio.h> #include<string.h> #include<conio.h> int main() { int n, ngram, count; char array[99]; int num[99]; scanf("%d", &n); count = n; do{ scanf("%s %d", array, &ngram); num[count] =...
  12. P

    All about programming (Specially c, c++, VB, Java)

    getchar(); XD Try mo lang. C lang kasi alam ko eh.
  13. P

    All about programming (Specially c, c++, VB, Java)

    Sali ako XD ComSci sa PUP. C language is Hart hart.
  14. P

    All about programming (Specially c, c++, VB, Java)

    Pasali po. 1st year BSCS student sa PUP. Hahaha. Mukha pong mahirap eh.
Back
Top Bottom