c++

  1. 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
  2. A

    🔒 Closed C++ calculating the mode

    pa help naman po
  3. 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--...
  4. 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 ----
  5. 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...
  6. 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!
  7. O

    🔒 Closed Flowchart guide

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

    🔒 Closed Looking for project suggestions

    Using array, struct, function, condition, dobly
  9. 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.
  10. A

    🔒 Closed Meron bang paper sensor?

    kung meron po, ano po bang sensor gagamitin ko para sa paper sensor?
  11. 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) {...
  12. 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...
  13. 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 =...
  14. C

    🔒 Closed Nosebleed

    Kahit C++ palang, nakakadugo na ng utak haha. Analyze pa more
  15. 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
  16. G

    🔒 Closed Pa help po pls using turbo c++ po

    Problem number 1: An automobile repair shop wants you to write a payroll program for its employees.The program must calculate each employees net salary that is the salary after taxes.Prompt the user for the employee's pay rate hours worked employee code (either 'A' for full time or 'B' for part...
  17. H

    🔒 Closed Pa help sa po!!!

    Help po!!!:):) Yung prof namin dapat gawin tong code tapos present na namin pa tulong or tips naman po...
  18. K

    🔒 Closed Tama ba ang pag call using bridge?

    I Want to connect End() and Mainmenu() In the functionname END() I will call MAINMENU2(). Then Inside MAINMENU2(), I Will Call Mainmenu1(). Inside Mainmenu1(), I Will call Mainmenu()But the error is the 3 functionname() identifier not found. any suggestion mga master :D Hehehe
  19. 4

    🔒 Closed C++

    Possible ba na matutuo ako ng c++ ? Kaya ko Kaya ? Nasan point kase ako ng Hindi Alam Kung saan magsisimula eh, pero nanood na ako ng vidoe tutorial sa youtube yung LearningLad,ma re recommend nyo ba yung turo nya para sakin na begginer? Tips narin say mga c++ program mer dito. Thank you!
  20. K

    🔒 Closed Pahelp mga master

    pano sir ma call yung q1e() (yung my white circle) gamit yung Switch statement(red circle)? bali po kapag nag output na po yung number the mag cacall po siya sa quiestion() example: case 1: 1 then call q1e(); bale po mag rarandom kasi sir yung number 1-15. then each number ay my naka assign na...
Back
Top