c++

  1. H

    🔒 Closed Need help guys

    Guys pahelp naman po paano po gumawa ng File delete and file update Mula po dito code ko, if pwede pacomment nalang din po Yung code, tia po! Baguhan palang kasi ako. void creatf(); void dispf(); void searchf(); #include<stdio.h> #include<conio.h> #include<math.h> #include<fcntl.h>...
  2. I

    🔒 Closed Pa help po

    na solve ko na din po ahahaha
  3. P

    🔒 Closed Any suggestions kung pano matuto mag c++?

    17 years old palang ako so cant afford for college degree pa. Marunong po ako mag Java, C#, at Python kaso medyo natatakot ako sa C++ parang mahirap eh 😂. pero gusto ko lang po matuto mag C++ for many reasons. Kung may maisusugest kayo na tutorial sites, or books, suggest lang po kayo. Salamat po.
  4. D

    🔒 Closed Programming course for beginner in up diliman

    Hi guys, any Idea sa short courses regarding programming C,C#,python,java sa UP? Na check ko site nila meron sila schedule for the said courses this january to march and at the end of the course may portfolio na project. Worth it ba to? Or mas ok sa MFI- Meralco (short course sa programming)...
  5. 4

    🔒 Closed C++ cash register

    Pa help po gumawa ng Cash Register Program sa C++ need kasi multi order in single reciept wala ako idea paano yun gagawin single lang kaya ko ehh help pls project lang po
  6. A

    🔒 Closed C++ calculating the mode

    pa help naman po
  7. N

    🔒 Closed Microsoft visual c++ 6.0

    Sino po may alam na pwedeng downloadan ng Microsoft Visual C++ 6.0? Kailanga lang po talaga for Study Purposes. Pa link nalang po Salamat
  8. A

    🔒 Closed C++ triangle without array

    #include <iostream> using namespace std; int main(int argc, char** argv) { int row, a, b, spa=1; cout<<"Rows: "; cin>>row; spa=row-1; for(b=1;b<=row;b++) { for(a=1;a<=spa;a++) { cout<<" "; } spa--...
  9. I

    🔒 Closed C++ string palindrome problem

    Patulong naman po sa mga nakakaalam ng C++, here's the problem: Input sentence string then separate each word. Determine the palindromes and tell how many times they appear in the string. EXAMPLE: ---- INPUT: asd qwerty aaa sdfgah sas sas OUTPUT: aaa — 1 sas — 2 ----
  10. A

    🔒 Closed C++ array

    #include <iostream> using namespace std; int main(int argc, char** argv){ int b=0,c=0; char rep; cout<<"How many User? "; cin>>b; string arr; string search=""; for(int a=0; a<b; a++) { cout<<"Name" <<endl; cin>> arr[a]; system("cls"); } do { cout<<"Name\n"; for(int...
  11. F

    🔒 Closed Patulong guys thanks

    paki program naman po to using c language Write a program that compute the perimeter of the rectangle of any given sides. last na to guys mag aaral tlga ako ng mabuti haha Thanks!
  12. O

    🔒 Closed Flowchart guide

    Tama na po ba tong flowchart ko? Correct me if I'm wrong
  13. M

    🔒 Closed Looking for project suggestions

    Using array, struct, function, condition, dobly
  14. N

    🔒 Closed C++ dll

    Hello newbie here, sino po master sa vs c++ 2017 dll antih@ck pa help thanks para sa client side ko.
  15. A

    🔒 Closed Meron bang paper sensor?

    kung meron po, ano po bang sensor gagamitin ko para sa paper sensor?
  16. B

    🔒 Closed C program to check whether a number is prime or not

    Output Enter a positive integer: 29 29 is a prime number. #include <stdio.h> int main() { int n, i, flag = 0; printf("Enter a positive integer: "); scanf("%d", &n); for(i = 2; i <= n/2; ++i) { // condition for nonprime number if(n%i == 0) {...
  17. B

    🔒 Closed C program to find factorial of a number

    Output Enter an integer: 10 Factorial of 10 = 3628800 #include <stdio.h> int main() { int n, i; unsigned long long factorial = 1; printf("Enter an integer: "); scanf("%d",&n); // show error if the user enters a negative integer if (n < 0) printf("Error...
  18. B

    🔒 Closed C program to check whether a number is palindrome or not

    #include <stdio.h> int main() { int n, reversedInteger = 0, remainder, originalInteger; printf("Enter an integer: "); scanf("%d", &n); originalInteger = n; // reversed integer is stored in variable while( n!=0 ) { remainder = n%10; reversedInteger =...
  19. C

    🔒 Closed Nosebleed

    Kahit C++ palang, nakakadugo na ng utak haha. Analyze pa more
  20. B

    🔒 Closed Help sa problem

    d q gets ang problem, marunong nmn aq mag programm pero sobra hina q tlga sa pag solved ng problems, given na ang formula pero d q gets, cnu pwd mka pagsimplify ng formula saqn nito, hirap n tlga aq d q gets pano nkuha ung nsa sample output mraming salamt po
Back
Top