- 1 Cài đặt phần mềm cần thiết cho học lập trình web
- 2 Tự Học HTML Cơ Bản Online Miễn Phí Từ A đến Z
- 3 Seo website dành cho dân IT
- 4 REACT NATIVE
- 5 sdfdsf
- 6 Lập trình di động với React Native
- 7 Vue.js
- 8 Kiếm thức cơ bản HTML CSS
- 9 So sánh count() và sizeof() 2 phần tử đếm mảng
- 10 Toán tử và biểu thức của php
Bignum: nhờ sửa lỗi phát sinh trong C++
// BIGNUM.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include <iostream> using namespace std; //Khai báo hằng #define MAXDIGITS 100 /* maximum length */ #define PLUS 1 /* positive sign bit */ #define MINUS -1 /* negative sign bit */ //Khai báo cấu ...
đệ quy:tìm số lớn thư 2 trong mảng. lỗi chạy sai
int dmax1(int a[], int n) { if (n <= 1) return 1; else if (a[n - 1] > dmax1(a, n - 1)) return a[n-1]; return dmax1(a, n - 1); } int dmax2(int a[], int n) { if (n <= 1) return 1; else if (a[n-1]>dmax2(a, n - 1) && (a[n-1]!=dmax1(a,n-1))&& dmax2(a,n-1)!=dmax1( ...
Code đệ quy đếm số lượng số nguyên tố bị sai
int ktnt1(int n, int i = 2) { return (i == n) ? 1 : (n%i) ? ktnt1(n, i + 1) : 0; } int demnt1(int a[], int n) { if (ktnt1(a[n]) == 1) return 1 + demnt1(a,n-1); return demnt1(a,n-1); }
Hỏi về 1 đoạn trong code mảng đệ quy: kiểm tra mảng tăng dần?
// kiểm tra mảng có tăng dân fhay không.cpp : Defines the entry point for the console application. // kiểm tra xem mảng có thứ tự tăng hay không #include "stdafx.h" #include <iostream> using namespace std; #define MAX 100 // nhập mảng void nhapmang(int a[], int n) { if (n >=0 ...
đệ quy: mình ko hiểu n/10 để làm gì?
đề bài:Tìm chữ số có giá trị lớn nhất của số nguyên dương n #include "stdafx.h" #include <iostream> using namespace std; // int seekmax(int n,int &max) { int m; if (n == 0) return max; else { m = n % 10; if (m > max) max=m; } return seekmax(n/10,max); } int ...
Lỗi logic ở dòng if else không biết cách sửa
Sáng giờ e mò mà ko hiểu tại sao nó ko chạy dòng else cứ tới if rồi return 0 luôn. Lúc nào cung “mang toàn chẵn hết” khó hiểu // giai bai tap mang 1 chieu co ban.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include <iostream> using namespace ...
Cách dùng con trỏ 2 chiều trong hàm?
// 1.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include <iostream> using namespace std; void nhapmang(int **a, int d, int c); void inmang(int **a, int d, int c); int _tmain(int argc, _TCHAR* argv[]) { int **a; int d, c; cout << "nhap so ...
Bị bắt buộc phải sử dụng fopen_s?
// 1216_FILE.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include <stdio.h> #include <iostream> using namespace std; int _tmain(int argc, _TCHAR* argv[]) { int a[100], n; //Khai báo mảng //Nhập số phần tử cout << "Nhap so phan ...
thắc mắc tại sao chuong trinh ko hiu n la gi
// mang 1 chieu.cpp : Defines the entry point for the console application. //nhap vap mang so nguyen xuat mang vua nhap tinh tong cac phan tu trong mang #include "stdafx.h" #include <iostream> using namespace std; //nhap mang void nhapmang(int *a, int n); //in mang void inmang(int *a, ...