This is a preview of a paper to view the full text you need to signup and login.
|
lab05
|
|
|
Lab05 Answer (for Lab Project) // prog01.c Multiplication table #include main() {int i, j; for (i=1;i<=9;i++){ for (j=1;j<=9;j++) printf("%3d", i*j ); printf(" "); } return 0; } ********************************************************************************** // prog02.c Upper half of multiplication table #include main() {int i, j; for (i=1;i<=9;i++){ for (j=1;j main() { int i, input, product, sum=0; do { printf("Please input an integer from 1 to 9 (both inclusive): "); scanf("%d",&input); if (input>9) printf("Input is > 9. Please enter again: "); else if (input<1) printf("Input is < 1. Please enter again: "); } while (!(input<10 && input>0)); for (i=1;i<=9;i++) { product = input * i; printf("%d ",product); sum+=product; } printf(" The sum of this row is %d.
|
|
|
To link to this page, copy the following code to your site:
|
|
Paper Information
|
|
|
Title: lab05
Words: 701 Rating: None Pages: 2.8 submitted by: pan6699
If you think this paper shouldn't be here then
|
|
|
|
|
Signup & Login
|
|
|
If you don't currently have a login then Signup here
|
|
|
|
|
Pre-Written Papers
|
|
|
|
|
|
|
|
Custom Papers
|
|
|
|
|
|
|
|