473,385 Members | 1,357 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,385 software developers and data experts.

new to c++ and discussions

Hi I'm new to all this.
I have an assignment it is to test my skills in the following areas
Developing Programs
Invoking Functions
Task write first name in asterisks.
I have wrote progamme and it does not work?
I do not know where i went wrong, please can anyone
HELP me?
from vege c++
Mar 25 '07 #1
17 1307
Savage
1,764 Expert 1GB
hi i'm new to all this.
i have an assignment it is to test my skills in the following areas
Developing Programs
Invoking Functions
Task write first name in asterisks.
I have wrote progamme and it does not work?
I do know where i went wrong please can anyone
HELP me?
from vege c++
Hi,

Please post your code here and somone will help you.


Savage
Mar 25 '07 #2
Hi is this my code?
vege c++.

Expand|Select|Wrap|Line Numbers
  1.  
  2. // Purpose:    Write nickname in asterisks
  3.  
  4. //-------------------------------------------------------------------
  5. // Included Libraries
  6. #include <stdio.h>
  7.  
  8. //-------------------------------------------------------------------
  9. // Function Prototypes
  10.  
  11. //-------------------------------------------------------------------
  12. void oneOnLeft();
  13. //-------------------------------------------------------------------
  14. // Purpose: Prints one asterisk to the left followed by three spaces
  15.  
  16. <snipped>
  17.  
  18. //-------------------------------------------------------------------
  19. int main() {
  20. //-------------------------------------------------------------------
  21.     // Line 1 of letters
  22. <snipped>
  23.     oneOnLeft();
  24. <snipped>
  25.     // Line 2 of letters
  26. <snipped>
  27.     // Line 3 of letters
  28. <snipped>
  29.     // Line 4 of letters
  30. <snipped>
  31.     oneOnLeft();
  32. <snipped>
  33.     oneOnLeft();
  34. <snipped>
  35. }
  36.  
  37. //-------------------------------------------------------------------
  38. // Functions
  39. //-------------------------------------------------------------------
  40. <snipped>
  41.  
  42. void oneOnLeft() {
  43.  
  44.     // Prints one asterisk to the left followed by three spaces
  45.     printf("*   ");
  46.  
  47. <snipped>
  48.  
  49. void oneOnLeft() {
  50.  
  51.     // Prints one asterisk to the left followed by three spaces
  52.     printf("*   ");
  53. }
  54.  
  55. <snipped>
  56.  
  57. void oneOnLeft() {
  58.  
  59.     // Prints one asterisk to the left followed by three spaces
  60.     printf("*   ");
  61. }
  62.  
Mar 25 '07 #3
Savage
1,764 Expert 1GB
Your functions are only doing printf so if this is the code user can't input it's
nickname because its missing input.

One question:

Are you trying to fill up somekind of form with nickname?

If you are not trying that you coluld simple use do while loop to enter nickname

in asteriks, have a look here


Savage
Mar 25 '07 #4
Hi
It is to creat functions, you will call them to create the letters in your name
and output to the terminal.
does this help oh i hope so I am having so much trouble with this and i dont
understand any of it.
Thank you so much for helping me don't give up
kind regards vege c++
Mar 25 '07 #5
Savage
1,764 Expert 1GB
Hi
It is to creat functions, you will call them to create the letters in your name
and output to the terminal.
does this help oh i hope so I am having so much trouble with this and i dont
understand any of it.
Thank you so much for helping me don't give up
kind regards vege c++
But, why are you using so much functions for something that should be a simple?

Have you seen a thread which I pointed to you with hyperlink?

And one more question:

Why are you using function endOfline?I don't think that nickname would be
long one whole line or even worst few lines.
Mar 25 '07 #6
this is the assignment.

Assignment 1
• Concepts
• Your Task
• Hints
• Submission
• Two Reviews
• Your Marks
• Back to Assignment Main Page
• Home
Concepts
Before starting this assignment you should have read Modules 1 and 2 and have completed the tutorials in those modules.
This assignment will test your skill in the following areas.
• Developing Programs
• Invoking Functions
Back to Assignment Main Page | Top
Your Task
• Your task will be to write your first name or nickname in asterisks. For example, the name Michael can be written in asterisks like so...

• Each letter is made up of 5 lines with each line having up to 3 asterisks. Each character is separated by a single space.
• To achieve this you will write a number of functions for the various combinations of asterisks within a single line. There are six such combinations.
Function prototype Description Output
void oneOnLeft(); One asterisk to the left followed by three spaces *
void twoOnLeft(); Two asterisks followed by two spaces * *
void threeStars(); Three asterisks followed by one space * * *
void twoWithSpace(); One asterisk, a space, another asterisk and another space * *
void oneInMiddle(); A space, an asterisk and two spaces *
void oneOnRight(); Two spaces, an asterisk and another space *
void twoOnRight(); One space, two asterisks and another space * *
void endOfLine(); A newline character to force the start of a new line
• Using combinations of these functions you can create any alphabetic character...

• Once you have created these functions you will call them to create the letters in your name.
• Due to the nature of output to the terminal, you will need to write the first line of each letter in your name, followed by a new line, then the second line and so on.
• Before you submit you will need to add comments and a sample run so your source code file will appear as follows...
1. Library precompiler directives
2. Function prototypes with a comment
3. The main() function
4. The line functions shown above
5. A sample run including demonstration of compilation and program running
• For this assignment you should add comments as follows
o Each function prototype should have a purpose comment as follows. (Note: for future assignments more commenting on prototypes will be required.)
o //--------------------------------------------------------------------------------
o void oneOnLeft();
o //--------------------------------------------------------------------------------
o // Purpose: Prints one asterisk to the left followed by three spaces
o

o In the main() function you should divide up each line of your output into blocks and each block should be preceded by a comment, for example...
o int main() {
o
o // Line 1 of letters
o twoWithSpace();
o threeStars();
o oneInMiddle();
o twoWithSpace();
o oneInMiddle();
o threeStars();
o oneOnLeft();
o endOfLine();
o
o // Line 2 of letters
threeStars(); oneInMiddle(); ...
o Each function should contain at least one comment.
o void oneOnLeft() {
o
o // Print one asterisk to the left followed by three spaces
o printf("* ");
}
o At the end of your source code file add a demonstration of compilation and a sample run of your program. This will be captured from the command line when you compile and run your program.
o You will need to copy and paste this from the command line into a multi-line comment in your source code file.
 For DOS, right click on the title bar of the terminal window and select "mark". Highlight the needed content and press enter. You can now paste this into your editor.
 For Linux, highlight text at the terminal; to paste into your editor, press the middle button (pressing the scroll wheel on a scroll mouse like a button will do this.) Alternately there may be copy and paste options in the Edit menu of your terminal and editor.
• The contents of each function should be indented one level.
• Be sure that your code compiles without errors or warnings. Test this even after you add your sample run. Be sure the file has a blank line at the end. This should not even contain tabs or spaces.
• Your submission will be judged against the criteria below. Be sure to check each criteria before you submit.
Back to Assignment Main Page | Top
Hints
• When compiling, use the -Wall switch all the time. It can help you sort out lots of issues early.
• Be aware that a peer reviewing your code may compile your code in a different compiler to your own. Be sure to use only code taught in the course and if you are not using a standard compiler like the DJGPP (gpp) compiler under Windows/DOS or the GNU (g++) compiler under Linux be sure to test your code under one of these.
Back to Assignment Main Page | Top
Submission
Save your source code file with a .cpp extension.
Upload the this file using the Submission Facility then proceed to completing reviews.
This is the only file you will need to submit.
Back to Assignment Main Page | Top
Two Reviews
Whereas you reviewed one submission for tutorials, for this assignment you will be required to complete reviews of two students' assignments.
You will be asked to consider the following criteria when completing reviews. You may want to keep this information available in a second browser for reference.
• The program compiles without errors or warnings
Save the file into a directory you can access with your compiler. Compile the file using the -Wall switch. Check that no errors or warnings are produced. Use only a standard compiler like the DJGPP (gpp) compiler under Windows/DOS or the GNU (g++) compiler under Linux.
• The program runs and outputs a name in asterisks
If the program compiles, run the program. The output should be the same as shown in the sample in the source code file.
• Prototypes appear above the main() function and each is commented
Open the source code file in your editor. The seven prescribed functions should each have a prototype and each should at least have a purpose described.
• Code is indented consistently and no line is longer than 80 characters
The contents of functions should be indented. No lines should be longer than 80 characters. Longer statements should be formatted over multiple lines.
• The main() function contains only calls to the prescribed functions and no additional calls to printf()
Check the main() function. There should only be calls to the line output functions and no calls to printf().
• Each function includes comments on blocks of code
Comments should be placed above the code they refer to. Each comment should describe the purpose of the code below. Such comments should be indented at the same level as the code they refer to. Not every line needs to be commented. Comments should be brief and not simply a syntactical interpretation of the code they refer to (eg: "A printf() statement that does some output"), instead they should describe the purpose of the code (eg: "Outputs three asterisks").
• The source code file contains a sample run
The source code file should contain a second sample run demonstrating how the program compiled and ran. This should be contained in a comment at the end of the file.
Be sure you are accurate in completing your reviews. In your comment at the end of the review take care to offer positive feedback and suggestions for improvement to your peers as they are learning, just as you are. You may describe how your code differed from theirs.
Back to Assignment Main Page | Top
Your Marks
This assignment will be marked out of 8.
If all criteria are satisfied you will receive 6 marks.
Completion of two reviews will earn 2 marks. Where it is obvious that a student has completed a review without examining the necessary file, review marks will be removed.
All submissions and reviews are candidates for random moderation. Where two reviews are conflicting, instructor moderation will be applied.
Marks will be awarded during the week following the due date.

does this explan it
please dont give up
kind regards
retarted c++.
Mar 25 '07 #7
Savage
1,764 Expert 1GB
this is the assignment.

Assignment 1
• Concepts
• Your Task
• Hints
• Submission
• Two Reviews
• Your Marks
• Back to Assignment Main Page
• Home
Concepts
Before starting this assignment you should have read Modules 1 and 2 and have completed the tutorials in those modules.
This assignment will test your skill in the following areas.
• Developing Programs
• Invoking Functions
Back to Assignment Main Page | Top
Your Task
• Your task will be to write your first name or nickname in asterisks. For example, the name Michael can be written in asterisks like so...

• Each letter is made up of 5 lines with each line having up to 3 asterisks. Each character is separated by a single space.
• To achieve this you will write a number of functions for the various combinations of asterisks within a single line. There are six such combinations.
Function prototype Description Output
void oneOnLeft(); One asterisk to the left followed by three spaces *
void twoOnLeft(); Two asterisks followed by two spaces * *
void threeStars(); Three asterisks followed by one space * * *
void twoWithSpace(); One asterisk, a space, another asterisk and another space * *
void oneInMiddle(); A space, an asterisk and two spaces *
void oneOnRight(); Two spaces, an asterisk and another space *
void twoOnRight(); One space, two asterisks and another space * *
void endOfLine(); A newline character to force the start of a new line
• Using combinations of these functions you can create any alphabetic character...

• Once you have created these functions you will call them to create the letters in your name.
• Due to the nature of output to the terminal, you will need to write the first line of each letter in your name, followed by a new line, then the second line and so on.
• Before you submit you will need to add comments and a sample run so your source code file will appear as follows...
1. Library precompiler directives
2. Function prototypes with a comment
3. The main() function
4. The line functions shown above
5. A sample run including demonstration of compilation and program running
• For this assignment you should add comments as follows
o Each function prototype should have a purpose comment as follows. (Note: for future assignments more commenting on prototypes will be required.)
o //--------------------------------------------------------------------------------
o void oneOnLeft();
o //--------------------------------------------------------------------------------
o // Purpose: Prints one asterisk to the left followed by three spaces
o

o In the main() function you should divide up each line of your output into blocks and each block should be preceded by a comment, for example...
o int main() {
o
o // Line 1 of letters
o twoWithSpace();
o threeStars();
o oneInMiddle();
o twoWithSpace();
o oneInMiddle();
o threeStars();
o oneOnLeft();
o endOfLine();
o
o // Line 2 of letters
threeStars(); oneInMiddle(); ...
o Each function should contain at least one comment.
o void oneOnLeft() {
o
o // Print one asterisk to the left followed by three spaces
o printf("* ");
}
o At the end of your source code file add a demonstration of compilation and a sample run of your program. This will be captured from the command line when you compile and run your program.
o You will need to copy and paste this from the command line into a multi-line comment in your source code file.
 For DOS, right click on the title bar of the terminal window and select "mark". Highlight the needed content and press enter. You can now paste this into your editor.
 For Linux, highlight text at the terminal; to paste into your editor, press the middle button (pressing the scroll wheel on a scroll mouse like a button will do this.) Alternately there may be copy and paste options in the Edit menu of your terminal and editor.
• The contents of each function should be indented one level.
• Be sure that your code compiles without errors or warnings. Test this even after you add your sample run. Be sure the file has a blank line at the end. This should not even contain tabs or spaces.
• Your submission will be judged against the criteria below. Be sure to check each criteria before you submit.
Back to Assignment Main Page | Top
Hints
• When compiling, use the -Wall switch all the time. It can help you sort out lots of issues early.
• Be aware that a peer reviewing your code may compile your code in a different compiler to your own. Be sure to use only code taught in the course and if you are not using a standard compiler like the DJGPP (gpp) compiler under Windows/DOS or the GNU (g++) compiler under Linux be sure to test your code under one of these.
Back to Assignment Main Page | Top
Submission
Save your source code file with a .cpp extension.
Upload the this file using the Submission Facility then proceed to completing reviews.
This is the only file you will need to submit.
Back to Assignment Main Page | Top
Two Reviews
Whereas you reviewed one submission for tutorials, for this assignment you will be required to complete reviews of two students' assignments.
You will be asked to consider the following criteria when completing reviews. You may want to keep this information available in a second browser for reference.
• The program compiles without errors or warnings
Save the file into a directory you can access with your compiler. Compile the file using the -Wall switch. Check that no errors or warnings are produced. Use only a standard compiler like the DJGPP (gpp) compiler under Windows/DOS or the GNU (g++) compiler under Linux.
• The program runs and outputs a name in asterisks
If the program compiles, run the program. The output should be the same as shown in the sample in the source code file.
• Prototypes appear above the main() function and each is commented
Open the source code file in your editor. The seven prescribed functions should each have a prototype and each should at least have a purpose described.
• Code is indented consistently and no line is longer than 80 characters
The contents of functions should be indented. No lines should be longer than 80 characters. Longer statements should be formatted over multiple lines.
• The main() function contains only calls to the prescribed functions and no additional calls to printf()
Check the main() function. There should only be calls to the line output functions and no calls to printf().
• Each function includes comments on blocks of code
Comments should be placed above the code they refer to. Each comment should describe the purpose of the code below. Such comments should be indented at the same level as the code they refer to. Not every line needs to be commented. Comments should be brief and not simply a syntactical interpretation of the code they refer to (eg: "A printf() statement that does some output"), instead they should describe the purpose of the code (eg: "Outputs three asterisks").
• The source code file contains a sample run
The source code file should contain a second sample run demonstrating how the program compiled and ran. This should be contained in a comment at the end of the file.
Be sure you are accurate in completing your reviews. In your comment at the end of the review take care to offer positive feedback and suggestions for improvement to your peers as they are learning, just as you are. You may describe how your code differed from theirs.
Back to Assignment Main Page | Top
Your Marks
This assignment will be marked out of 8.
If all criteria are satisfied you will receive 6 marks.
Completion of two reviews will earn 2 marks. Where it is obvious that a student has completed a review without examining the necessary file, review marks will be removed.
All submissions and reviews are candidates for random moderation. Where two reviews are conflicting, instructor moderation will be applied.
Marks will be awarded during the week following the due date.

does this explan it
please dont give up
kind regards
retarted c++.
Sorry for misunderstending.The problem probably is that you have multiiple
declarations for the same function.Another possible problem is that
when declaring a function you can't declare it like(e.g)

void endOfline();

rather

void endOfLine(void);

Savage
Mar 25 '07 #8
O.K
will try thank you so much for your patients
if it does not work can i contact you again?
very very thankful
kind regards
retarted vege c++
Mar 25 '07 #9
Savage
1,764 Expert 1GB
O.K
will try thank you so much for your patients
if it does not work can i contact you again?
very very thankful
kind regards
retarted vege c++
Ofcourse.

By the way i'm 100% sure it wiil work or else...

We will make it work!!!
Mar 25 '07 #10
hi i'm back
just tried to run programe added

void oneOnLeft(void)
and it did not work oh my
i thought this would be easy how wrong i was?
what do you mean by multiple declaration for the same functions and how do
i fix it
so sorry to bug you please forgive me
kind regards
biggest retarted vege c++
Mar 25 '07 #11
Savage
1,764 Expert 1GB
hi i'm back
just tried to run programe added

void oneOnLeft(void)
and it did not work oh my
i thought this would be easy how wrong i was?
what do you mean by multiple declaration for the same functions and how do
i fix it
so sorry to bug you please forgive me
kind regards
biggest retarted vege c++
Here's the example of what i meant:

You have declared a function (for example) void endOfLine(void) in code once.
Than after few more lines you again declare the same function.

Have a look:

Expand|Select|Wrap|Line Numbers
  1. void endOfLine() {
  2.  
  3.     // A new line character to force the start of a new line
  4.     printf("\n");
  5.  
  6.  
  7. void oneInMiddle() {
  8.  
  9.     // Prints a space and asterisk and two spaces
  10.     printf(" *  ");
  11.  
  12. void twoWithSpace() {
  13.  
  14.     // Prints one asterisk,a space,another asterisk and another space
  15.     printf("* * ");
  16.  
  17. void threeStars() {
  18.  
  19.     // Prints three asterisk followed by one space
  20.     printf("*** ");
  21.  
  22. void twoWithSpace() {
  23.  
  24.     // Prints one asterisk,a space,another asterisk and another space
  25.     printf("* * ");
  26.  
  27. void twoWithSpace() {
  28.  
  29.     // Prints one asterisk,a space,another asterisk and another space
  30.     printf("* * ");
  31.  
  32. void endOfLine() {
  33.  
  34.     // A new line character to force the start of a new line
  35.     printf("\n");
  36. }
How to fix it?

Make sure that there is only one function of same kind.
Mar 25 '07 #12
The number of function prototype( I got 8) before the main should be same as the functions which are located later. But I got 23 functions.

do i add all 23 functions in the prototype to fix problem
how can i not use same functions if i didnt i would not get my name in asterisks
oh my i hate this assignment
why can't i understand this i know i'm meant to but i don't
please forgive me for bugging you i hope you can be patience with me
very sorry
forever greatful
vege c++
Mar 25 '07 #13
Savage
1,764 Expert 1GB
The number of function prototype( I got 8) before the main should be same as the functions which are located later. But I got 23 functions.

do i add all 23 functions in the prototype to fix problem
how can i not use same functions if i didnt i would not get my name in asterisks
oh my i hate this assignment
why can't i understand this i know i'm meant to but i don't
please forgive me for bugging you i hope you can be patience with me
very sorry
forever greatful
vege c++
No,no,no.You can call as much as you like functions in main ,but
when declaring you can only declare twice a function of same kind

once before main() and once after main().All other declarations will present a problem
Mar 25 '07 #14
oh?
but don't i have to declare functions more then twice to spell name in aasterisks
ho my, oh my
i'm a spazoid what do i do???
you must be sick of me i know i am hee hee hee
now what?
kind regards
super spazoid retared vege c++
Mar 25 '07 #15
Savage
1,764 Expert 1GB
oh?
but don't i have to declare functions more then twice to spell name in aasterisks
ho my, oh my
i'm a spazoid what do i do???
you must be sick of me i know i am hee hee hee
now what?
kind regards
super spazoid retared vege c++

No.That's not declaring a function that's calling a function inside main().

Inside main() you can call function bunch of times to achieve name with asteriks.

Here is how it should look:

Expand|Select|Wrap|Line Numbers
  1. // Purpose:    Write nickname in asterisks
  2.  
  3. //-------------------------------------------------------------------
  4. // Included Libraries
  5. #include <stdio.h>
  6.  
  7. //-------------------------------------------------------------------
  8. // Function Prototypes //First time declaritions
  9.  
  10. //-------------------------------------------------------------------
  11. void oneOnLeft(void);
  12. //-------------------------------------------------------------------
  13. // Purpose: Prints one asterisk to the left followed by three spaces
  14.  
  15. <snipped>
  16.  
  17. //-------------------------------------------------------------------
  18. void main(void) {
  19. //-------------------------------------------------------------------
  20.     // Line 1 of letters
  21. <snipped>
  22.     oneOnLeft();
  23. <snipped>
  24.     // Line 2 of letters
  25. <snipped>
  26.     // Line 3 of letters
  27. <snipped>
  28.     // Line 4 of letters
  29. <snipped>
  30.     oneOnLeft();
  31. <snipped>
  32.     oneOnLeft();
  33. <snipped>
  34. }
  35.  
  36. //-------------------------------------------------------------------
  37. [U]// Functions //Secound time declarition[/u]
  38. //-------------------------------------------------------------------
  39. <snipped>
  40.  
  41. void oneOnLeft(void) {
  42.  
  43.     // Prints one asterisk to the left followed by three spaces
  44.     printf("*   ");
  45. }
  46.  
  47. <snipped>
  48.  
Mar 25 '07 #16
ok thank you so much for your time hope to hear from you again
I will fix it up now and hopefully it will work
I hope i can get the hang of this it would be great if i could really understand
this but i think it will take time and alot more time for me hee hee hee
thank again YOUR GREAT SAVAGE
kind regards loopy vege c++
Mar 25 '07 #17
Savage
1,764 Expert 1GB
ok thank you so much for your time hope to hear from you again
I will fix it up now and hopefully it will work
I hope i can get the hang of this it would be great if i could really understand
this but i think it will take time and alot more time for me hee hee hee
thank again YOUR GREAT SAVAGE
kind regards loopy vege c++
I hope to.

Bye
Mar 25 '07 #18

Sign in to post your reply or Sign up for a free account.

Similar topics

4
by: Amir Michail | last post by:
Hi, We are planning to have "lecture preparation" discussions in comp3141 at UNSW, where anyone can participate -- not only students taking the subject. There is a heavy python component in...
4
by: Amir Michail | last post by:
Hi, I'm building something like digg/reddit and would like to allow people to have discussions on various items. Is there a simple lightweight python library that I can use (as opposed to a...
0
Ganon11
by: Ganon11 | last post by:
The Miscellaneous Discussions forum is for any technology related question, comment, concern, or discussion. However, we encourage you to look at the full list of forums before deciding this is the...
4
theaybaras
by: theaybaras | last post by:
Hi All... I've read both of the requery discussions I could find... Refresh ComboBox After Adding New Values via a Seperate Form and refresh a form but am not quite able to get this to apply...
5
by: =?Utf-8?B?a2xlZWZhcnI=?= | last post by:
Could it not be possible to have currently discussed and newly posted to topics returned to the top of the list. It's not long before a topic gets lost as new ones come up. I have noticed for a...
23
by: Sacred Heart | last post by:
Hi, I'm new to Python and have come across a problem I don't know how to solve, enter com.lang.python :) I'm writing some small apps to learn the language, and I like it a lot so far. My...
0
by: reema | last post by:
dotnet http://www.interviewdoor.com/interviewforum/index.php?c=5 VB.NET Interview Questions And Real Time Discussions http://www.interviewdoor.com/interviewforum/viewforum.php?f=25 ASP.NET...
0
by: reema | last post by:
dotnet http://www.interviewdoor.com/interviewforum/index.php?c=5 VB.NET Interview Questions And Real Time Discussions http://www.interviewdoor.com/interviewforum/viewforum.php?f=25 ASP.NET...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
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: 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...

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.