Câu hỏi của Việt Hưng Vũ

Sử dụng hàm fgets để nhập struct nhưng khi in bị mất phần tử đầu tiên

#include <stdio.h> #include <stdlib.h> #include <string.h> typedef struct STUDENT { char hoten[30]; }Student; void ReadStudent(Student std[],int n)// nhap ten hoc sinh { for(int i =0; i<n; i++) { printf("Nhap ten cho hoc sinh thu %d. ", i+1); ...

Việt Hưng Vũ viết 14:16 ngày 01/10/2018 chỉnh sửa

Lỗi "cannot convert ‘ThiSinh’ to ‘int’ in initialization" sửa như thế nào?

//em muon #include <iostream> #include <string.h> #include <iomanip> using namespace std; struct ThiSinh { long sobaodanh; string quequan; string hoten; int toan; int ly; int hoa; int tongdiem; }; void NhapDanhSachThiSinh (int n, ThiSinh ...

Việt Hưng Vũ viết 11:25 ngày 01/10/2018 chỉnh sửa

Lỗi Segmentation fault. Em sai ở đâu ạ?

>//Viet ham chuyen so thap phan thanh nhi phan > #include <iostream> > #include <cmath> > using namespace std; > void LaySoNhiPhan (int So, int arr[]) > { > //Khai bao bien > int SoDu, dem =0; > int *p;// khai bao bien con tro > //Nhap so ...

Việt Hưng Vũ viết 11:10 ngày 01/10/2018 chỉnh sửa

Lỗi: too few arguments to function int(giaithua). ai giúp em với ạ

//đề bài: Tính S(n) = 1 + x^2/2! + x^4/4! + ... + x^2n/(2n)! #include < iostream> #include < cmath> using namespace std; int giaithua (int n, int tich); int main() { //khai bao bien float x=0, n=0; float mauso =1, phanso=0, tong =0; //nhap bien cout << "Nhap ...

Việt Hưng Vũ viết 11:04 ngày 01/10/2018 chỉnh sửa

Code sau khi nhập input thì không thực hiện được phép tính

#include <cmath> #include <cstdlib> double bodyfatnam(double cannang, double sodovong2); double bodyfatnu(double cannang, double sodovong2); int main() { using namespace std; char name[20]; cout <<" Enter your name here: " << endl;//nhap ten cin >> ...

Việt Hưng Vũ viết 10:19 ngày 01/10/2018 chỉnh sửa

Lỗi khi nhập input là float nhưng kết quả luôn là int

#include <iostream> #include <cmath> #include <cstdlib> int BMI(int cannang,int chieucao );//khai bao bien int main() { using namespace std; double chieucao;//(1) double cannang;//(2) cout << "Enter your weight: " <<endl; cin >> cannang; cout << "Enter ...

Việt Hưng Vũ viết 10:17 ngày 01/10/2018 chỉnh sửa

Cho em hỏi sửa dòng 11 thế nào để hiện cả 3 biến a b c ạ

Screenshot from 2017-07-02 22-28-10.png 1366x768 178 KB

Việt Hưng Vũ viết 10:16 ngày 01/10/2018 chỉnh sửa
1