Câu hỏi của Long Long

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 ...

Long Long viết 16:45 ngày 30/09/2018 chỉnh sửa

đệ 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( ...

Long Long viết 16:42 ngày 30/09/2018 chỉnh sửa

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); }

Long Long viết 16:42 ngày 30/09/2018 chỉnh sửa

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 ...

Long Long viết 16:39 ngày 30/09/2018 chỉnh sửa

đệ 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 ...

Long Long viết 16:37 ngày 30/09/2018 chỉnh sửa

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 ...

Long Long viết 16:26 ngày 30/09/2018 chỉnh sửa

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 ...

Long Long viết 16:25 ngày 30/09/2018 chỉnh sửa

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 ...

Long Long viết 16:25 ngày 30/09/2018 chỉnh sửa

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, ...

Long Long viết 16:25 ngày 30/09/2018 chỉnh sửa
< 1 2