473,388 Members | 1,326 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,388 software developers and data experts.

Method PrintLn (two classes)// need help

Hi,

I must implement the method printLn of the class Thoraire.

And I've done this, can someone tell me if I am right ?

void Thoraire ::printLn()

{

cout<< « Teacher's name : « m_nomEsnseignant<<endl ;

for(int i=0 ; i<m_nbCases ;i++)

{

m_cases[i].printLn() ;

}

}

Is it possible to print only the schedule of one teacher at a time ? Thanks
for you time.

/--Here my classes

# ifndef CASE_H

# define CASE_H

#include <iostream>

#include <iomanip>

#include <cstring>

using namespace std ;

const int Clundi = 1 ;

const int Cmardi = 2 ;

const int Cmercredi = 3 ;

const int Cjeudi = 4 ;

const int Cvendredi = 5 ;

const int Csamedi = 6 ;

const int Cdimanche = 7 ;

class Tcase{

public :

Tcase (int numSemaine, int numJour, double heureDebut, double duree,

char matiere[], char classe[]= " ", char salle[]= " ") ;

int getNumSemaine() const ;

double getDuree() const ;

void printLn() const ;

private :

//attributs obligatoires

int m_numSemaine ; //1..53

int m_numJour ; //1..7

double m_heureDebut ; //13h30 = 13.5

double m_duree ; //2h45 = 2.75

char m_matiere[10] ; //p ex. prog7

//attributs optionnels

char m_classe[10] ; //p. ex. 3IG-EE

char m_salle[10] ; //p. ex A46A

}

#endif



# ifndef HORAIRE_H

# define HORAIRE_H

# include <iostream>

# include <cstring>

using namespace std ;

#include « case.h »

class TenseignantError{} ; // the teacher is not matching

class Toverflow{} ; //capacity overflow



const int CcasesMax = 1000 ;

class Thoraire{

public :

//create a new hours schedule

Thoraire (const char nomEnseignant[]) ;

//add a case in the hours schedule

void ajouteCase (Tcase* caseHor) throw (Toverflow) ;

//calculate the total hours

double chargeHoraire() const ;

//return a sample of the schedule



//return an empty schedule if the number of the week doesn't
exist

Thoraire horaireHebdomadaire (int numSem) const ;

/*

Create a new hours schedule by fusionning both schedule, throw an exception
of class TenseignantError when the schedules don't have the same teacher
(enseignant) name.

Throw an exception of class Toverflow when the fusion create an overflow of
capacity (>CcasesMax)

*/

Thoraire operator+ (const Thoraire & hor) const throw (TenseignantError,
Toverflow) ;

Void printLn() ;

Private :

Char m_nomEnseignant [30] ; // obligatory

Tcase* m_cases[CcasesMax] ;

Int m_nbCases ;

} ;

#endif


Jul 23 '05 #1
7 1412
stephane wrote:

First of all:
Can you check your newsreader settings? All of your
posts come through terrible formatted.
Hi,

I must implement the method printLn of the class Thoraire.

And I've done this, can someone tell me if I am right ?
Well. What does the compiler say?

void Thoraire ::printLn()

{

cout<< « Teacher's name : « m_nomEsnseignant<<endl ;

for(int i=0 ; i<m_nbCases ;i++)

{

m_cases[i].printLn() ;


Looking at your class definition I can see ...

class Thoraire
{
public :

[...]

private :
char m_nomEnseignant [30] ; // obligatory
Tcase* m_cases[CcasesMax] ;
int m_nbCases ;
};

that m_cases is an array of pointers. Thus m_cases[i] is a single
pointer. But a pointer doesn't have a method printLn(). But the
object it is pointing to has that function. Thus you probably want:

m_cases[i]->printLn();
I noted something in your posted code. You use 'keywords'
Private, Char, Int
(Note the uppercase first letter!)

Those are *not* the C++ keywords, which are all lower case only.
This makes me think that you somewhere have some
#define Private private
#define Char char
#define Int int
which is definitly *not* a good idea!!!

But then: Given the very bad formatting of your text and source code
it could also be possible that your newsread introduced that nonsense.
Which is just an additional argument to: either check and change the
configuration of your newsread or use a different one, since the one
you use is complete crap.

--
Karl Heinz Buchegger
kb******@gascad.at
Jul 23 '05 #2
Danke schön Karl,

Sorry about the display:

Is it better like this?

Hi,

I must implement the method printLn of the class Thoraire.

And I've done this, can someone tell me if I am right ?

void Thoraire ::printLn()

{

cout<< « Teacher's name : « m_nomEsnseignant<<endl ;

for(int i=0 ; i<m_nbCases ;i++)

{

m_cases[i].printLn() ;

}

}

Is it possible to print only the schedule of one teacher at a time ? Thanks
for you time.

/--Here my classes
# ifndef CASE_H
# define CASE_H
#include <iostream>
#include <iomanip>
#include <cstring>
using namespace std ;

const int Clundi = 1 ;
const int Cmardi = 2 ;
const int Cmercredi = 3 ;
const int Cjeudi = 4 ;
const int Cvendredi = 5 ;
const int Csamedi = 6 ;
const int Cdimanche = 7 ;

class Tcase{
public :

Tcase (int numSemaine, int numJour, double heureDebut, double duree,
char matiere[], char classe[]= " ", char salle[]= " ") ;

int getNumSemaine() const ;
double getDuree() const ;
void printLn() const ;

private :

//attributs obligatoires
int m_numSemaine ; //1..53
int m_numJour ; //1..7
double m_heureDebut ; //13h30 = 13.5
double m_duree ; //2h45 = 2.75
char m_matiere[10] ; //p ex. prog7
//attributs optionnels
char m_classe[10] ; //p. ex. 3IG-EE
char m_salle[10] ; //p. ex A46A

}
#endif

# ifndef HORAIRE_H
# define HORAIRE_H
# include <iostream>
# include <cstring>
using namespace std ;
#include « case.h »

class TenseignantError{} ; // the teacher is not matching
class Toverflow{} ; //capacity overflow

const int CcasesMax = 1000 ;
class Thoraire{
public :

//create a new hours schedule
Thoraire (const char nomEnseignant[]) ;
//add a case in the hours schedule
void ajouteCase (Tcase* caseHor) throw (Toverflow) ;
//calculate the total hours
double chargeHoraire() const ;
//return a sample of the schedule
//return an empty schedule if the number of the week doesn't
exist

Thoraire horaireHebdomadaire (int numSem) const ;
/*
Create a new hours schedule by fusionning both schedule, throw an exception
of class TenseignantError when the schedules don't have the same teacher
(enseignant) name.
Throw an exception of class Toverflow when the fusion create an overflow of
capacity (>CcasesMax) */

Thoraire operator+ (const Thoraire & hor) const throw (TenseignantError,
Toverflow) ;

Void printLn() ;
Private :

Char m_nomEnseignant [30] ; // obligatory
Tcase* m_cases[CcasesMax] ;
Int m_nbCases ;
} ;

#endif
"Karl Heinz Buchegger" <kb******@gascad.at> a écrit dans le message de news:
41***************@gascad.at...
stephane wrote:


First of all:
Can you check your newsreader settings? All of your
posts come through terrible formatted.
Hi,

I must implement the method printLn of the class Thoraire.

And I've done this, can someone tell me if I am right ?


Well. What does the compiler say?

void Thoraire ::printLn()

{

cout<< « Teacher's name : « m_nomEsnseignant<<endl ;

for(int i=0 ; i<m_nbCases ;i++)

{

m_cases[i].printLn() ;


Looking at your class definition I can see ...

class Thoraire
{
public :

[...]

private :
char m_nomEnseignant [30] ; // obligatory
Tcase* m_cases[CcasesMax] ;
int m_nbCases ;
};

that m_cases is an array of pointers. Thus m_cases[i] is a single
pointer. But a pointer doesn't have a method printLn(). But the
object it is pointing to has that function. Thus you probably want:

m_cases[i]->printLn();
I noted something in your posted code. You use 'keywords'
Private, Char, Int
(Note the uppercase first letter!)

Those are *not* the C++ keywords, which are all lower case only.
This makes me think that you somewhere have some
#define Private private
#define Char char
#define Int int
which is definitly *not* a good idea!!!

But then: Given the very bad formatting of your text and source code
it could also be possible that your newsread introduced that nonsense.
Which is just an additional argument to: either check and change the
configuration of your newsread or use a different one, since the one
you use is complete crap.

--
Karl Heinz Buchegger
kb******@gascad.at

Jul 23 '05 #3
Well it is not different. Sorry.

"stephane" <st*************@bluewin.ch> a écrit dans le message de news:
41**********************@news.sunrise.ch...
Danke schön Karl,

Sorry about the display:

Is it better like this?

Hi,

I must implement the method printLn of the class Thoraire.

And I've done this, can someone tell me if I am right ?

void Thoraire ::printLn()

{

cout<< « Teacher's name : « m_nomEsnseignant<<endl ;

for(int i=0 ; i<m_nbCases ;i++)

{

m_cases[i].printLn() ;

}

}

Is it possible to print only the schedule of one teacher at a time ?
Thanks for you time.

/--Here my classes
# ifndef CASE_H
# define CASE_H
#include <iostream>
#include <iomanip>
#include <cstring>
using namespace std ;

const int Clundi = 1 ;
const int Cmardi = 2 ;
const int Cmercredi = 3 ;
const int Cjeudi = 4 ;
const int Cvendredi = 5 ;
const int Csamedi = 6 ;
const int Cdimanche = 7 ;

class Tcase{
public :

Tcase (int numSemaine, int numJour, double heureDebut, double duree,
char matiere[], char classe[]= " ", char salle[]= " ") ;

int getNumSemaine() const ;
double getDuree() const ;
void printLn() const ;

private :

//attributs obligatoires
int m_numSemaine ; //1..53
int m_numJour ; //1..7
double m_heureDebut ; //13h30 = 13.5
double m_duree ; //2h45 = 2.75
char m_matiere[10] ; //p ex. prog7
//attributs optionnels
char m_classe[10] ; //p. ex. 3IG-EE
char m_salle[10] ; //p. ex A46A

}
#endif

# ifndef HORAIRE_H
# define HORAIRE_H
# include <iostream>
# include <cstring>
using namespace std ;
#include « case.h »

class TenseignantError{} ; // the teacher is not matching
class Toverflow{} ; //capacity overflow

const int CcasesMax = 1000 ;
class Thoraire{
public :

//create a new hours schedule
Thoraire (const char nomEnseignant[]) ;
//add a case in the hours schedule
void ajouteCase (Tcase* caseHor) throw (Toverflow) ;
//calculate the total hours
double chargeHoraire() const ;
//return a sample of the schedule
//return an empty schedule if the number of the week doesn't
exist

Thoraire horaireHebdomadaire (int numSem) const ;
/*
Create a new hours schedule by fusionning both schedule, throw an
exception
of class TenseignantError when the schedules don't have the same teacher
(enseignant) name.
Throw an exception of class Toverflow when the fusion create an overflow
of
capacity (>CcasesMax) */

Thoraire operator+ (const Thoraire & hor) const throw (TenseignantError,
Toverflow) ;

Void printLn() ;
Private :

Char m_nomEnseignant [30] ; // obligatory
Tcase* m_cases[CcasesMax] ;
Int m_nbCases ;
} ;

#endif
"Karl Heinz Buchegger" <kb******@gascad.at> a écrit dans le message de
news: 41***************@gascad.at...
stephane wrote:


First of all:
Can you check your newsreader settings? All of your
posts come through terrible formatted.
Hi,

I must implement the method printLn of the class Thoraire.

And I've done this, can someone tell me if I am right ?


Well. What does the compiler say?

void Thoraire ::printLn()

{

cout<< « Teacher's name : « m_nomEsnseignant<<endl ;

for(int i=0 ; i<m_nbCases ;i++)

{

m_cases[i].printLn() ;


Looking at your class definition I can see ...

class Thoraire
{
public :

[...]

private :
char m_nomEnseignant [30] ; // obligatory
Tcase* m_cases[CcasesMax] ;
int m_nbCases ;
};

that m_cases is an array of pointers. Thus m_cases[i] is a single
pointer. But a pointer doesn't have a method printLn(). But the
object it is pointing to has that function. Thus you probably want:

m_cases[i]->printLn();
I noted something in your posted code. You use 'keywords'
Private, Char, Int
(Note the uppercase first letter!)

Those are *not* the C++ keywords, which are all lower case only.
This makes me think that you somewhere have some
#define Private private
#define Char char
#define Int int
which is definitly *not* a good idea!!!

But then: Given the very bad formatting of your text and source code
it could also be possible that your newsread introduced that nonsense.
Which is just an additional argument to: either check and change the
configuration of your newsread or use a different one, since the one
you use is complete crap.

--
Karl Heinz Buchegger
kb******@gascad.at


Jul 23 '05 #4
LOL!

stephane wrote:
Danke schön Karl,

Sorry about the display:

Is it better like this?

Hi,

I must implement the method printLn of the class Thoraire.

And I've done this, can someone tell me if I am right ?

void Thoraire ::printLn()

{

cout<< « Teacher's name : « m_nomEsnseignant<<endl ;

for(int i=0 ; i<m_nbCases ;i++)

{

m_cases[i].printLn() ;

}

}

Is it possible to print only the schedule of one teacher at a time ? Thanks for you time.

/--Here my classes
# ifndef CASE_H
# define CASE_H
#include <iostream>
#include <iomanip>
#include <cstring>
using namespace std ;

const int Clundi = 1 ;
const int Cmardi = 2 ;
const int Cmercredi = 3 ;
const int Cjeudi = 4 ;
const int Cvendredi = 5 ;
const int Csamedi = 6 ;
const int Cdimanche = 7 ;

class Tcase{
public :

Tcase (int numSemaine, int numJour, double heureDebut, double duree,
char matiere[], char classe[]= " ", char salle[]= " ") ;

int getNumSemaine() const ;
double getDuree() const ;
void printLn() const ;

private :

//attributs obligatoires
int m_numSemaine ; //1..53
int m_numJour ; //1..7
double m_heureDebut ; //13h30 = 13.5
double m_duree ; //2h45 = 2.75
char m_matiere[10] ; //p ex. prog7
//attributs optionnels
char m_classe[10] ; //p. ex. 3IG-EE
char m_salle[10] ; //p. ex A46A

}
#endif

# ifndef HORAIRE_H
# define HORAIRE_H
# include <iostream>
# include <cstring>
using namespace std ;
#include « case.h »

class TenseignantError{} ; // the teacher is not matching
class Toverflow{} ; //capacity overflow

const int CcasesMax = 1000 ;
class Thoraire{
public :

//create a new hours schedule
Thoraire (const char nomEnseignant[]) ;
//add a case in the hours schedule
void ajouteCase (Tcase* caseHor) throw (Toverflow) ;
//calculate the total hours
double chargeHoraire() const ;
//return a sample of the schedule
//return an empty schedule if the number of the week doesn't exist

Thoraire horaireHebdomadaire (int numSem) const ;
/*
Create a new hours schedule by fusionning both schedule, throw an exception of class TenseignantError when the schedules don't have the same teacher (enseignant) name.
Throw an exception of class Toverflow when the fusion create an overflow of capacity (>CcasesMax) */

Thoraire operator+ (const Thoraire & hor) const throw (TenseignantError, Toverflow) ;

Void printLn() ;
Private :

Char m_nomEnseignant [30] ; // obligatory
Tcase* m_cases[CcasesMax] ;
Int m_nbCases ;
} ;

#endif
"Karl Heinz Buchegger" <kb******@gascad.at> a écrit dans le message de news: 41***************@gascad.at...
stephane wrote:


First of all:
Can you check your newsreader settings? All of your
posts come through terrible formatted.
Hi,

I must implement the method printLn of the class Thoraire.

And I've done this, can someone tell me if I am right ?


Well. What does the compiler say?

void Thoraire ::printLn()

{

cout<< « Teacher's name : « m_nomEsnseignant<<endl ;

for(int i=0 ; i<m_nbCases ;i++)

{

m_cases[i].printLn() ;


Looking at your class definition I can see ...

class Thoraire
{
public :

[...]

private :
char m_nomEnseignant [30] ; // obligatory
Tcase* m_cases[CcasesMax] ;
int m_nbCases ;
};

that m_cases is an array of pointers. Thus m_cases[i] is a single
pointer. But a pointer doesn't have a method printLn(). But the
object it is pointing to has that function. Thus you probably want:

m_cases[i]->printLn();
I noted something in your posted code. You use 'keywords'
Private, Char, Int
(Note the uppercase first letter!)

Those are *not* the C++ keywords, which are all lower case only.
This makes me think that you somewhere have some
#define Private private
#define Char char
#define Int int
which is definitly *not* a good idea!!!

But then: Given the very bad formatting of your text and source code it could also be possible that your newsread introduced that nonsense. Which is just an additional argument to: either check and change the configuration of your newsread or use a different one, since the one you use is complete crap.

--
Karl Heinz Buchegger
kb******@gascad.at


Jul 23 '05 #5
it's not funny

"Shezan Baig" <sh************@gmail.com> a écrit dans le message de news:
11**********************@f14g2000cwb.googlegroups. com...
LOL!

stephane wrote:
Danke schön Karl,

Sorry about the display:

Is it better like this?

Hi,

I must implement the method printLn of the class Thoraire.

And I've done this, can someone tell me if I am right ?

void Thoraire ::printLn()

{

cout<< « Teacher's name : « m_nomEsnseignant<<endl ;

for(int i=0 ; i<m_nbCases ;i++)

{

m_cases[i].printLn() ;

}

}

Is it possible to print only the schedule of one teacher at a time ? Thanks for you time.

/--Here my classes
# ifndef CASE_H
# define CASE_H
#include <iostream>
#include <iomanip>
#include <cstring>
using namespace std ;

const int Clundi = 1 ;
const int Cmardi = 2 ;
const int Cmercredi = 3 ;
const int Cjeudi = 4 ;
const int Cvendredi = 5 ;
const int Csamedi = 6 ;
const int Cdimanche = 7 ;

class Tcase{
public :

Tcase (int numSemaine, int numJour, double heureDebut, double duree,
char matiere[], char classe[]= " ", char salle[]= " ") ;

int getNumSemaine() const ;
double getDuree() const ;
void printLn() const ;

private :

//attributs obligatoires
int m_numSemaine ; //1..53
int m_numJour ; //1..7
double m_heureDebut ; //13h30 = 13.5
double m_duree ; //2h45 = 2.75
char m_matiere[10] ; //p ex. prog7
//attributs optionnels
char m_classe[10] ; //p. ex. 3IG-EE
char m_salle[10] ; //p. ex A46A

}
#endif

# ifndef HORAIRE_H
# define HORAIRE_H
# include <iostream>
# include <cstring>
using namespace std ;
#include « case.h »

class TenseignantError{} ; // the teacher is not matching
class Toverflow{} ; //capacity overflow

const int CcasesMax = 1000 ;
class Thoraire{
public :

//create a new hours schedule
Thoraire (const char nomEnseignant[]) ;
//add a case in the hours schedule
void ajouteCase (Tcase* caseHor) throw (Toverflow) ;
//calculate the total hours
double chargeHoraire() const ;
//return a sample of the schedule
//return an empty schedule if the number of the week doesn't exist

Thoraire horaireHebdomadaire (int numSem) const ;
/*
Create a new hours schedule by fusionning both schedule, throw an exception of class TenseignantError when the schedules don't have the same teacher (enseignant) name.
Throw an exception of class Toverflow when the fusion create an overflow of capacity (>CcasesMax) */

Thoraire operator+ (const Thoraire & hor) const throw (TenseignantError, Toverflow) ;

Void printLn() ;
Private :

Char m_nomEnseignant [30] ; // obligatory
Tcase* m_cases[CcasesMax] ;
Int m_nbCases ;
} ;

#endif
"Karl Heinz Buchegger" <kb******@gascad.at> a écrit dans le message de news: 41***************@gascad.at...
stephane wrote:


First of all:
Can you check your newsreader settings? All of your
posts come through terrible formatted.
Hi,

I must implement the method printLn of the class Thoraire.

And I've done this, can someone tell me if I am right ?


Well. What does the compiler say?

void Thoraire ::printLn()

{

cout<< « Teacher's name : « m_nomEsnseignant<<endl ;

for(int i=0 ; i<m_nbCases ;i++)

{

m_cases[i].printLn() ;


Looking at your class definition I can see ...

class Thoraire
{
public :

[...]

private :
char m_nomEnseignant [30] ; // obligatory
Tcase* m_cases[CcasesMax] ;
int m_nbCases ;
};

that m_cases is an array of pointers. Thus m_cases[i] is a single
pointer. But a pointer doesn't have a method printLn(). But the
object it is pointing to has that function. Thus you probably want:

m_cases[i]->printLn();
I noted something in your posted code. You use 'keywords'
Private, Char, Int
(Note the uppercase first letter!)

Those are *not* the C++ keywords, which are all lower case only.
This makes me think that you somewhere have some
#define Private private
#define Char char
#define Int int
which is definitly *not* a good idea!!!

But then: Given the very bad formatting of your text and source code it could also be possible that your newsread introduced that nonsense. Which is just an additional argument to: either check and change the configuration of your newsread or use a different one, since the one you use is complete crap.

--
Karl Heinz Buchegger
kb******@gascad.at

Jul 23 '05 #6
stephane wrote:

Danke schön Karl,

Sorry about the display:

Is it better like this?
A little bit. At least the complete source code is better now.

Hi,

I must implement the method printLn of the class Thoraire.

And I've done this, can someone tell me if I am right ?
I already answered that one, didn't you see it?

void Thoraire ::printLn()

{

cout<< « Teacher's name : « m_nomEsnseignant<<endl ;

for(int i=0 ; i<m_nbCases ;i++)

{

m_cases[i].printLn() ;

}

}

Is it possible to print only the schedule of one teacher at a time ? Thanks
for you time.


I am not sure what you mean with that question and where you problem
is located.
(Part of my unsureness may be the fact that I don't speak french, so it
is hard to me to guess what your program should do, based on the names
of classes and variables).

--
Karl Heinz Buchegger
kb******@gascad.at
Jul 23 '05 #7
I understand the names of variables in french don't help you. You helped me
already though. Thanks.

"Karl Heinz Buchegger" <kb******@gascad.at> a écrit dans le message de news:
41***************@gascad.at...
stephane wrote:

Danke schön Karl,

Sorry about the display:

Is it better like this?


A little bit. At least the complete source code is better now.

Hi,

I must implement the method printLn of the class Thoraire.

And I've done this, can someone tell me if I am right ?


I already answered that one, didn't you see it?

void Thoraire ::printLn()

{

cout<< « Teacher's name : « m_nomEsnseignant<<endl ;

for(int i=0 ; i<m_nbCases ;i++)

{

m_cases[i].printLn() ;

}

}

Is it possible to print only the schedule of one teacher at a time ?
Thanks
for you time.


I am not sure what you mean with that question and where you problem
is located.
(Part of my unsureness may be the fact that I don't speak french, so it
is hard to me to guess what your program should do, based on the names
of classes and variables).

--
Karl Heinz Buchegger
kb******@gascad.at

Jul 23 '05 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
by: Eric A. Forgy | last post by:
Hello, I am just learning Java and am trying to write a method that does something like //=========================================== public Static List find(double array,double val,String...
18
by: JohnR | last post by:
From reading the documentation, this should be a relatively easy thing. I have an arraylist of custom class instances which I want to search with an"indexof" where I'm passing an instance if the...
1
by: ladislav | last post by:
I need modify first program.In second program I try print method findPrime in method main.I have there anywhere mistakes.Please obout help. First program: ** *PrimeNumber.java * *
2
by: Goonrider72 | last post by:
Hi there great sight iv been reading and learning from alot of the questions here. iv just started programming using java... we use Bluej at uni. my problem is as follows: i have 2 classes. the...
7
by: Codeseeker99 | last post by:
I am new to java and I am trying to learn how to to reduce lines of code that are redundant in a simple file I made. I am trying to figure out how to reduce this code down to 13 methods not including...
2
nomad
by: nomad | last post by:
Hello Everyone: I back trying to learn Java again. Here is what I'm trying to do. 1. How does the code inside the visitPennsylvania method refer to the variable with vale "red Planet". I know to...
1
by: madman228 | last post by:
Hi guys I have run in to a littl bit of trouble. I am writing a class called polynomial in which i need a derivative method I have everything, just dont know how to start the derivative method. Any...
4
by: lilyumestar | last post by:
I have project I have to do for class. We have to write 4 different .java files. Project2.java HouseGUI.java House.java HouseSorting.java I already finish House.java and I need to work on...
3
by: zlwilly | last post by:
Hi everyone! I have written two classes, Fraction and useFraction. Fraction holds all of the methods required to process the data from useFraction, which consists of private ints that are turned...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.